|
|
|
Android ขอความช่วยเหลือหน่อยครับ ผมกำลังเขียนแอปการคำนวณอยู่ รายละเอียดด้านในน่ะครับ |
|
|
|
|
|
|
|
- String#format
- DecimalFormat
- BigDecimal
- Math.round , Math.floor
ทำได้หลายวิธีเลยครับ อยู่ที่จะเลือกใช้อันไหน และรูปแบบของข้อมูลมี type เป็นอะไร ลองเอาคีย์เวิร์ดไปค้นหาดูครับ ตัวอย่างเยอะมาก
|
|
|
|
|
Date :
2015-02-17 16:39:50 |
By :
devahoy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (Java)
mport java.util.Calendar;
import java.util.Locale;
public class TestFormat {
public static void main(String[] args) {
long n = 461012;
System.out.format("%d%n", n); // --> "461012"
System.out.format("%08d%n", n); // --> "00461012"
System.out.format("%+8d%n", n); // --> " +461012"
System.out.format("%,8d%n", n); // --> " 461,012"
System.out.format("%+,8d%n%n", n); // --> "+461,012"
double pi = Math.PI;
System.out.format("%f%n", pi); // --> "3.141593"
System.out.format("%.3f%n", pi); // --> "3.142"
System.out.format("%10.3f%n", pi); // --> " 3.142"
System.out.format("%-10.3f%n", pi); // --> "3.142"
System.out.format(Locale.FRANCE,
"%-10.4f%n%n", pi); // --> "3,1416"
Calendar c = Calendar.getInstance();
System.out.format("%tB %te, %tY%n", c, c, c); // --> "May 29, 2006"
System.out.format("%tl:%tM %tp%n", c, c, c); // --> "2:34 am"
System.out.format("%tD%n", c); // --> "05/29/06"
}
}
Java Format - String
|
|
|
|
|
Date :
2015-02-17 18:47:45 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (Android-Java)
Double Ans=Math.PI;
Ans=(double) Math.round(Ans*100);
Ans=Ans/100;
TextView.setText(Ans+"");
ค่าที่ได้ก็จะเป็น3.14
|
|
|
|
|
Date :
2015-02-20 17:43:40 |
By :
thammachet |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|