วิธีการจัดรูปแบบตัวเลขทศนิยมให้เป็นสตริงโดยไม่มีทศนิยม 0 ที่ไม่จำเป็น


496

64 บิตคู่สามารถเป็นตัวแทนของจำนวนเต็ม +/- 2 53ตรง

จากข้อเท็จจริงนี้ฉันเลือกที่จะใช้ double type เป็น single type สำหรับทุกประเภทของฉันเนื่องจากเลขจำนวนเต็มที่ใหญ่ที่สุดของฉันคือแบบ 32 บิต

แต่ตอนนี้ฉันต้องพิมพ์จำนวนเต็มหลอกเหล่านี้ แต่ปัญหาคือพวกเขายังผสมกับคู่จริง

ดังนั้นฉันจะพิมพ์คู่เหล่านี้อย่างดีใน Java ได้อย่างไร

ฉันได้ลองString.format("%f", value)แล้วซึ่งอยู่ใกล้ยกเว้นฉันได้รับจำนวนมากต่อท้ายศูนย์สำหรับค่าขนาดเล็ก

นี่คือตัวอย่างผลลัพธ์ของ %f

232.00000000
0.18000000000
1237875192.0
4.5800000000
0.00000000
1.23450000

สิ่งที่ฉันต้องการคือ:

232
0.18
1237875192
4.58
0
1.2345

แน่นอนว่าฉันสามารถเขียนฟังก์ชันเพื่อตัดค่าศูนย์เหล่านั้น แต่นั่นเป็นการสูญเสียประสิทธิภาพเนื่องจากการจัดการสตริง ฉันสามารถทำได้ดีกว่าด้วยรหัสรูปแบบอื่นได้หรือไม่

แก้ไข

คำตอบของ Tom E. และ Jeremy S. นั้นไม่สามารถยอมรับได้เนื่องจากพวกเขาทั้งคู่ปัดทศนิยมเป็นทศนิยม 2 ตำแหน่งโดยพลการ โปรดเข้าใจปัญหาก่อนที่จะตอบ

แก้ไข 2

โปรดทราบว่าString.format(format, args...)เป็นสถานที่เกิดเหตุขึ้น (ดูคำตอบด้านล่าง)


หากคุณต้องการทั้งหมดเป็นจำนวนเต็มทำไมไม่ใช้ความยาว? คุณได้รับผลกระทบมากขึ้นที่ 2 ^ 63-1 ไม่มีการจัดรูปแบบที่น่าอึดอัดใจและประสิทธิภาพที่ดีขึ้น
basszero

14
เนื่องจากค่าบางค่านั้นเพิ่มเป็นสองเท่า
Pyrolistical

2
บางกรณีที่ปัญหานี้เกิดขึ้นได้รับการแก้ไขข้อบกพร่องใน JDK 7: stackoverflow.com/questions/7564525/ …
Pyrolistical

มันเป็นแค่ฉันหรือจาวาสคริปต์ดีกว่าที่จะแปลงสตริงเป็น Java 100%
Andy

System.out.println("YOUR STRING" + YOUR_DOUBLE_VARIABLE);
Shayan Amani

คำตอบ:


399

หากความคิดคือการพิมพ์จำนวนเต็มเก็บไว้เป็นคู่ราวกับว่าพวกเขาเป็นจำนวนเต็มและมิฉะนั้นพิมพ์คู่ที่มีความแม่นยำขั้นต่ำที่จำเป็น:

public static String fmt(double d)
{
    if(d == (long) d)
        return String.format("%d",(long)d);
    else
        return String.format("%s",d);
}

ผลิต:

232
0.18
1237875192
4.58
0
1.2345

และไม่พึ่งพาการจัดการสตริง


9
เห็นด้วยนี่เป็นคำตอบที่ไม่ดีอย่าใช้มัน มันล้มเหลวในการทำงานที่มีdoubleขนาดใหญ่กว่าintค่าสูงสุด แม้จะมีlongก็ยังคงล้มเหลวสำหรับจำนวนมาก ยิ่งไปกว่านั้นมันจะส่งคืนสตริงในรูปแบบเลขชี้กำลังเช่น "1.0E10" สำหรับค่าขนาดใหญ่ซึ่งอาจไม่ใช่สิ่งที่ผู้ถามต้องการ ใช้%fแทน%sในสตริงรูปแบบที่สองเพื่อแก้ไข
jlh

26
สหกรณ์ระบุไว้อย่างชัดเจนว่าพวกเขาไม่ต้องการ%fส่งออกรูปแบบโดยใช้ คำตอบเฉพาะสำหรับสถานการณ์ที่อธิบายไว้และผลลัพธ์ที่ต้องการ สหกรณ์ปัญหาค่าสูงสุดของพวกเขาเป็นบิต 32 int ไม่ได้ลงนามซึ่งผมเอาไปหมายความว่าintได้รับการยอมรับ (ไม่มีการลงชื่อไม่จริงที่มีอยู่ในชวาและไม่มีแบบเป็นปัญหา) แต่เปลี่ยนintไปlongคือการแก้ไขเล็กน้อยหากสถานการณ์ที่แตกต่างกัน
JasonD

1
มันอยู่ที่ไหนในคำถามบอกว่ามันไม่ควรทำอย่างนั้น?
JasonD

6
String.format("%s",d)??? พูดคุยเกี่ยวกับค่าใช้จ่ายที่ไม่จำเป็น Double.toString(d)ใช้ เหมือนกันสำหรับคนอื่น ๆ : Long.toString((long)d).
Andreas

15
ปัญหาคือว่าใช้%sไม่ได้กับ Locales ในภาษาเยอรมันเราใช้ "," แทนที่จะเป็น "" ในจำนวนทศนิยม ในขณะที่String.format(Locale.GERMAN, "%f", 1.5)ส่งกลับ "1,500000" String.format(Locale.GERMAN, "%s", 1.5)ส่งกลับ "1.5" - ด้วย "." ซึ่งเป็นเท็จในภาษาเยอรมัน มี "% s" รุ่นที่ขึ้นกับภาษาด้วยหรือไม่
เฟลิกซ์เอเดลมานน์

414
new DecimalFormat("#.##").format(1.199); //"1.2"

ตามที่ระบุในความคิดเห็นนี่ไม่ใช่คำตอบที่ถูกต้องสำหรับคำถามต้นฉบับ
ที่กล่าวมามันเป็นวิธีที่มีประโยชน์มากในการจัดรูปแบบตัวเลขโดยไม่ต้องมีศูนย์ต่อท้ายที่ไม่จำเป็น


16
หมายเหตุสำคัญที่นี่คือ 1.1 จะจัดรูปแบบเป็น "1.1" อย่างถูกต้องโดยไม่มีศูนย์ต่อท้าย
Steve Pomeroy

53
และหากคุณต้องการให้มีจำนวนศูนย์ต่อท้าย (เช่นหากคุณกำลังพิมพ์จำนวนเงิน) คุณสามารถใช้ '0' แทน '#' (เช่น DecimalFormat ใหม่ ("0.00") รูปแบบ (จำนวน);) ไม่ใช่สิ่งที่ OP ต้องการ แต่อาจมีประโยชน์สำหรับการอ้างอิง
TJ Ellis

22
ใช่ในฐานะผู้เขียนต้นฉบับของคำถามนี่คือคำตอบที่ผิด ตลกมีกี่คะแนนขึ้นไปที่มี ปัญหาเกี่ยวกับการแก้ปัญหานี้คือมันจะปัดเศษทศนิยม 2 ตำแหน่งโดยพลการ
Pyrolistical

11
@ Mazyod เพราะคุณสามารถส่งต่อในตัวชี้แบบลอยตัวที่มีทศนิยมมากกว่ารูปแบบ นั่นคือการเขียนโค้ดที่สามารถใช้งานได้เกือบตลอดเวลา แต่ไม่ครอบคลุมถึงเคสทั้งหมด
Pyrolistical

15
@Pyrolistical - IMHO มี upvotes มากมายเพราะแม้ว่านี่จะเป็นคำตอบที่ไม่ถูกต้องสำหรับคุณ แต่มันเป็นคำตอบที่ถูกต้องสำหรับ 99% + ของผู้ที่พบคำถามและคำตอบนี้: โดยปกติเลขสองหลักสุดท้ายของคู่จะเป็น "สัญญาณรบกวน" ที่ถ่วงเอาท์พุทรบกวนการอ่าน ดังนั้นโปรแกรมเมอร์กำหนดจำนวนหลักที่เป็นประโยชน์กับคนอ่านผลลัพธ์และระบุว่าจำนวน สถานการณ์ทั่วไปคือข้อผิดพลาดทางคณิตศาสตร์ขนาดเล็กได้สะสมดังนั้นค่าอาจเป็น 12.000000034 แต่ต้องการการปัดเศษเป็น 12 และแสดงเป็น "12" อย่างแน่นหนา และ "12.340000056" => "12.34"
ToolmakerSteve

226
String.format("%.2f", value) ;

13
ถูกต้อง แต่พิมพ์เลขศูนย์ต่อท้ายเสมอแม้ว่าจะไม่มีส่วนที่เป็นเศษส่วน String.format ("%. 2f, 1.0005) พิมพ์ 1.00 และไม่ใช่ 1 มีตัวระบุรูปแบบใดที่จะไม่พิมพ์ส่วนที่เป็นเศษส่วนหากไม่มีอยู่หรือไม่
Emre Yazici

87
โหวตลงเนื่องจากคำถามขอให้ตัดค่าศูนย์ต่อท้ายทั้งหมดและคำตอบนี้จะปล่อยสองจุดลอยตัวโดยไม่คำนึงถึงการเป็นศูนย์
Zulaxia

DecimalFormat เป็นกลอุบายที่ดี - แม้ว่าฉันจะใช้สิ่งนี้กับสถานการณ์ของฉัน (ตัวจับเวลาระดับเกม) เนื่องจากค่าศูนย์ต่อท้ายดูดีขึ้น
Timothy Lee Russell

2
ฉันคิดว่าคุณสามารถจัดการศูนย์ต่อท้ายได้อย่างถูกต้องโดยใช้ g แทน f
ปีเตอร์ Ajtai

3
ฉันใช้โซลูชันนี้ในระบบการผลิตด้วย "% .5f" และมันแย่จริง ๆ อย่าใช้มัน ... เพราะมันพิมพ์: 5.12E-4 แทน 0.000512
hamish

87

ในระยะสั้น:

หากคุณต้องการกำจัดค่าศูนย์ต่อท้ายและปัญหาโลแคลคุณควรใช้:

double myValue = 0.00000021d;

DecimalFormat df = new DecimalFormat("0", DecimalFormatSymbols.getInstance(Locale.ENGLISH));
df.setMaximumFractionDigits(340); //340 = DecimalFormat.DOUBLE_FRACTION_DIGITS

System.out.println(df.format(myValue)); //output: 0.00000021

คำอธิบาย:

ทำไมคำตอบอื่น ๆ ไม่เหมาะกับฉัน:

  • Double.toString()หรือSystem.out.printlnหรือFloatingDecimal.toJavaFormatStringใช้สัญลักษณ์ทางวิทยาศาสตร์ถ้าสองครั้งมีค่าน้อยกว่า 10 ^ -3 หรือมากกว่าหรือเท่ากับ 10 ^ 7

    double myValue = 0.00000021d;
    String.format("%s", myvalue); //output: 2.1E-7
  • โดยการใช้%fความแม่นยำทศนิยมเริ่มต้นคือ 6 มิฉะนั้นคุณสามารถฮาร์ดโค้ดได้ แต่จะส่งผลให้มีค่าศูนย์เพิ่มถ้าคุณมีทศนิยมน้อยลง ตัวอย่าง:

    double myValue = 0.00000021d;
    String.format("%.12f", myvalue); //output: 0.000000210000
  • โดยใช้setMaximumFractionDigits(0);หรือ%.0fคุณลบความแม่นยำทศนิยมใด ๆ ซึ่งเป็นเรื่องปกติสำหรับจำนวนเต็ม / ยาว แต่ไม่ใช่สำหรับสองเท่า

    double myValue = 0.00000021d;
    System.out.println(String.format("%.0f", myvalue)); //output: 0
    DecimalFormat df = new DecimalFormat("0");
    System.out.println(df.format(myValue)); //output: 0
  • โดยใช้ DecimalFormat คุณจะขึ้นอยู่กับท้องถิ่น ในโลแคลฝรั่งเศสตัวคั่นทศนิยมคือเครื่องหมายจุลภาคไม่ใช่จุด:

    double myValue = 0.00000021d;
    DecimalFormat df = new DecimalFormat("0");
    df.setMaximumFractionDigits(340);
    System.out.println(df.format(myvalue));//output: 0,00000021

    การใช้ภาษาอังกฤษให้แน่ใจว่าคุณได้รับจุดสำหรับตัวคั่นทศนิยมทุกที่ที่โปรแกรมของคุณจะทำงาน

ทำไมใช้ 340 แล้วsetMaximumFractionDigits?

เหตุผลสองประการ:

  • setMaximumFractionDigitsยอมรับจำนวนเต็ม แต่การนำไปใช้มีตัวเลขสูงสุดที่อนุญาตDecimalFormat.DOUBLE_FRACTION_DIGITSซึ่งเท่ากับ 340
  • Double.MIN_VALUE = 4.9E-324 ดังนั้นด้วยตัวเลข 340 คุณแน่ใจว่าจะไม่ปัดความแม่นยำสองเท่าและหลวม

สิ่งนี้ใช้ไม่ได้กับจำนวนเต็มเช่น "2" กลายเป็น "2"
kap

ขอบคุณฉันได้แก้ไขคำตอบโดยใช้รูปแบบ0แทน#.
JBE

คุณไม่ได้ใช้อย่างต่อเนื่องDecimalFormat.DOUBLE_FRACTION_DIGITSแต่คุณกำลังใช้ค่า 340 DecimalFormat.DOUBLE_FRACTION_DIGITSซึ่งคุณให้ความคิดเห็นให้แสดงให้เห็นว่ามันเท่ากับ ทำไมไม่ลองใช้ค่าคงที่ ???
Maarten Bodewes

1
เนื่องจากแอตทริบิวต์นี้ไม่ใช่แบบสาธารณะ ... เป็น "แพ็คเกจที่เป็นมิตร"
JBE

4
ขอบคุณ! ในความเป็นจริงคำตอบนี้เป็นคำตอบเดียวที่ตรงกับข้อกำหนดทั้งหมดที่กล่าวถึงในคำถาม - มันไม่แสดงค่าศูนย์ที่ไม่จำเป็นไม่ปัดเศษตัวเลขและขึ้นอยู่กับสถานที่ ที่ดี!
เฟลิกซ์ Edelmann

26

ทำไมจะไม่ล่ะ:

if (d % 1.0 != 0)
    return String.format("%s", d);
else
    return String.format("%.0f",d);

สิ่งนี้ควรทำงานกับค่าที่มากที่สุดที่ Double สนับสนุน อัตราผลตอบแทน:

0.12
12
12.144252
0

2
ฉันชอบคำตอบนี้โดยที่เราไม่ต้องทำการแปลงแบบ
Jeff T.

คำอธิบายสั้น ๆ : "%s"โดยทั่วไปเรียกd.toString()แต่มันใช้ไม่ได้กับintหรือถ้าd==null!
Neph

24

บนเครื่องของฉันฟังก์ชั่นต่อไปนี้จะเร็วกว่าฟังก์ชั่นของJasonDประมาณ 7 เท่าเพราะมันหลีกเลี่ยงString.format:

public static String prettyPrint(double d) {
  int i = (int) d;
  return d == i ? String.valueOf(i) : String.valueOf(d);
}

1
อืมสิ่งนี้ไม่ได้คำนึงถึงสถานที่ แต่ไม่ได้ทำของ JasonD
TWiStErRob

22

2 เซนต์ของฉัน:

if(n % 1 == 0) {
    return String.format(Locale.US, "%.0f", n));
} else {
    return String.format(Locale.US, "%.1f", n));
}

2
return String.format(Locale.US, (n % 1 == 0 ? "%.0f" : "%.1f"), n);หรือเพียงแค่
MC Emperor

ล้มเหลวเมื่อ 23.00123 ==> 23.00
aswzen

11

ไม่เป็นไร

การสูญเสียประสิทธิภาพเนื่องจากการจัดการสตริงเป็นศูนย์

และนี่คือรหัสสำหรับตัดปลายหลังจากนั้น %f

private static String trimTrailingZeros(String number) {
    if(!number.contains(".")) {
        return number;
    }

    return number.replaceAll("\\.?0*$", "");
}

7
ฉันลงคะแนนเพราะโซลูชันของคุณไม่ใช่วิธีที่ดีที่สุด ลองดูที่ String.format คุณต้องใช้รูปแบบที่ถูกต้องลอยในอินสแตนซ์นี้ ดูคำตอบข้างต้นของฉัน
jjnguy

6
ฉันโหวตเพราะฉันมีปัญหาเดียวกันและไม่มีใครที่นี่ดูเหมือนจะเข้าใจปัญหา
Obay

1
Downvoted เป็น DecimalFormat ที่กล่าวถึงในโพสต์ของ Tom เป็นสิ่งที่คุณกำลังมองหา มันแถบศูนย์มีประสิทธิภาพมาก
Steve Pomeroy

4
จากข้างต้นเขาอาจต้องการตัดศูนย์โดยไม่ต้องปัดเศษ? PS @Pyrolistical แน่นอนคุณสามารถใช้ number.replaceAll (".? 0 * $", ""); (หลังจากมี (".") แน่นอน))
Rehno Lindeque

1
ตกลงแล้วคุณจะสามารถบรรลุวัตถุประสงค์ของฉันด้วย DecimalFormat ได้อย่างไร
Pyrolistical

8

ใช้DecimalFormatและsetMinimumFractionDigits(0)


ฉันจะเพิ่มsetMaximumFractionDigits(2)และsetGroupingUsed(false)(OP ไม่ได้พูดถึง แต่จากตัวอย่างดูเหมือนว่ามันจำเป็น) นอกจากนี้กรณีทดสอบขนาดเล็กก็ไม่ได้เจ็บอะไรเล็กน้อยในกรณีนี้ ยังคงเนื่องจากฉันคิดว่ามันเป็นวิธีที่ง่ายที่สุด upvote เป็น upvote :)
34411

6
if (d == Math.floor(d)) {
    return String.format("%.0f", d);
} else {
    return Double.toString(d);
}

1
ฉันคิดว่าฉันจะติดตามคุณในเรื่องนี้: D
aeracode

5

โปรดทราบว่าString.format(format, args...)เป็นสถานที่เกิดเหตุขึ้นเพราะรูปแบบการใช้ภาษาเริ่มต้นของผู้ใช้ที่เป็นอาจจะเป็นด้วยเครื่องหมายจุลภาคและช่องว่างแม้แต่ภายในเช่น123 456789หรือ123,456.789ซึ่งอาจจะไม่ตรงกับสิ่งที่คุณคาดหวัง

String.format((Locale)null, format, args...)คุณอาจจะชอบที่จะใช้

ตัวอย่างเช่น,

    double f = 123456.789d;
    System.out.println(String.format(Locale.FRANCE,"%f",f));
    System.out.println(String.format(Locale.GERMANY,"%f",f));
    System.out.println(String.format(Locale.US,"%f",f));

พิมพ์

123456,789000
123456,789000
123456.789000

และนี่คือสิ่งที่จะString.format(format, args...)ทำในประเทศต่างๆ

แก้ไขตกลงเนื่องจากมีการอภิปรายเกี่ยวกับพิธีการ:

    res += stripFpZeroes(String.format((Locale) null, (nDigits!=0 ? "%."+nDigits+"f" : "%f"), value));
    ...

protected static String stripFpZeroes(String fpnumber) {
    int n = fpnumber.indexOf('.');
    if (n == -1) {
        return fpnumber;
    }
    if (n < 2) {
        n = 2;
    }
    String s = fpnumber;
    while (s.length() > n && s.endsWith("0")) {
        s = s.substring(0, s.length()-1);
    }
    return s;
}

1
คุณควรเพิ่มสิ่งนี้เป็นความคิดเห็นในคำตอบที่ได้รับการยอมรับ
Pyrolistical

ความคิดเห็นไม่อนุญาตให้มีความยาวหรือรูปแบบของภาคผนวกนี้ เนื่องจากมันเป็นการเพิ่มข้อมูลที่เป็นประโยชน์ฉันคิดว่าควรอนุญาตตามที่เป็นมากกว่าการลบ
เทอร์รี่แจนรีด

5

ฉันได้ทำการDoubleFormatterแปลงค่าสองค่าจำนวนมากให้เป็นสตริงที่ดี / เป็นของขวัญได้อย่างมีประสิทธิภาพ:

double horribleNumber = 3598945.141658554548844; 
DoubleFormatter df = new DoubleFormatter(4,6); //4 = MaxInteger, 6 = MaxDecimal
String beautyDisplay = df.format(horribleNumber);
  • หากส่วนจำนวนเต็มของ V มีมากกว่า MaxInteger => แสดง V ในรูปแบบนักวิทยาศาสตร์ (1.2345e + 30) แสดงเป็นรูปแบบปกติ 124.45678
  • MaxDecimal ตัดสินตัวเลขทศนิยม (ตัดด้วยการปัดเศษของนายธนาคาร)

ที่นี่รหัส:

import java.math.RoundingMode;
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.text.NumberFormat;
import java.util.Locale;

import com.google.common.base.Preconditions;
import com.google.common.base.Strings;

/**
 * Convert a double to a beautiful String (US-local):
 * 
 * double horribleNumber = 3598945.141658554548844; 
 * DoubleFormatter df = new DoubleFormatter(4,6);
 * String beautyDisplay = df.format(horribleNumber);
 * String beautyLabel = df.formatHtml(horribleNumber);
 * 
 * Manipulate 3 instances of NumberFormat to efficiently format a great number of double values.
 * (avoid to create an object NumberFormat each call of format()).
 * 
 * 3 instances of NumberFormat will be reused to format a value v:
 * 
 * if v < EXP_DOWN, uses nfBelow
 * if EXP_DOWN <= v <= EXP_UP, uses nfNormal
 * if EXP_UP < v, uses nfAbove
 * 
 * nfBelow, nfNormal and nfAbove will be generated base on the precision_ parameter.
 * 
 * @author: DUONG Phu-Hiep
 */
public class DoubleFormatter
{
    private static final double EXP_DOWN = 1.e-3;
    private double EXP_UP; // always = 10^maxInteger
    private int maxInteger_;
    private int maxFraction_;
    private NumberFormat nfBelow_; 
    private NumberFormat nfNormal_;
    private NumberFormat nfAbove_;

    private enum NumberFormatKind {Below, Normal, Above}

    public DoubleFormatter(int maxInteger, int maxFraction){
        setPrecision(maxInteger, maxFraction);
    }

    public void setPrecision(int maxInteger, int maxFraction){
        Preconditions.checkArgument(maxFraction>=0);
        Preconditions.checkArgument(maxInteger>0 && maxInteger<17);

        if (maxFraction == maxFraction_ && maxInteger_ == maxInteger) {
            return;
        }

        maxFraction_ = maxFraction;
        maxInteger_ = maxInteger;
        EXP_UP =  Math.pow(10, maxInteger);
        nfBelow_ = createNumberFormat(NumberFormatKind.Below);
        nfNormal_ = createNumberFormat(NumberFormatKind.Normal);
        nfAbove_ = createNumberFormat(NumberFormatKind.Above);
    }

    private NumberFormat createNumberFormat(NumberFormatKind kind) {
        final String sharpByPrecision = Strings.repeat("#", maxFraction_); //if you do not use Guava library, replace with createSharp(precision);
        NumberFormat f = NumberFormat.getInstance(Locale.US);

        //Apply banker's rounding:  this is the rounding mode that statistically minimizes cumulative error when applied repeatedly over a sequence of calculations
        f.setRoundingMode(RoundingMode.HALF_EVEN);

        if (f instanceof DecimalFormat) {
            DecimalFormat df = (DecimalFormat) f;
            DecimalFormatSymbols dfs = df.getDecimalFormatSymbols();

            //set group separator to space instead of comma

            //dfs.setGroupingSeparator(' ');

            //set Exponent symbol to minus 'e' instead of 'E'
            if (kind == NumberFormatKind.Above) {
                dfs.setExponentSeparator("e+"); //force to display the positive sign in the exponent part
            } else {
                dfs.setExponentSeparator("e");
            }

            df.setDecimalFormatSymbols(dfs);

            //use exponent format if v is out side of [EXP_DOWN,EXP_UP]

            if (kind == NumberFormatKind.Normal) {
                if (maxFraction_ == 0) {
                    df.applyPattern("#,##0");
                } else {
                    df.applyPattern("#,##0."+sharpByPrecision);
                }
            } else {
                if (maxFraction_ == 0) {
                    df.applyPattern("0E0");
                } else {
                    df.applyPattern("0."+sharpByPrecision+"E0");
                }
            }
        }
        return f;
    } 

    public String format(double v) {
        if (Double.isNaN(v)) {
            return "-";
        }
        if (v==0) {
            return "0"; 
        }
        final double absv = Math.abs(v);

        if (absv<EXP_DOWN) {
            return nfBelow_.format(v);
        }

        if (absv>EXP_UP) {
            return nfAbove_.format(v);
        }

        return nfNormal_.format(v);
    }

    /**
     * format and higlight the important part (integer part & exponent part) 
     */
    public String formatHtml(double v) {
        if (Double.isNaN(v)) {
            return "-";
        }
        return htmlize(format(v));
    }

    /**
     * This is the base alogrithm: create a instance of NumberFormat for the value, then format it. It should
     * not be used to format a great numbers of value 
     * 
     * We will never use this methode, it is here only to understanding the Algo principal:
     * 
     * format v to string. precision_ is numbers of digits after decimal. 
     * if EXP_DOWN <= abs(v) <= EXP_UP, display the normal format: 124.45678
     * otherwise display scientist format with: 1.2345e+30 
     * 
     * pre-condition: precision >= 1
     */
    @Deprecated
    public String formatInefficient(double v) {

        final String sharpByPrecision = Strings.repeat("#", maxFraction_); //if you do not use Guava library, replace with createSharp(precision);

        final double absv = Math.abs(v);

        NumberFormat f = NumberFormat.getInstance(Locale.US);

        //Apply banker's rounding:  this is the rounding mode that statistically minimizes cumulative error when applied repeatedly over a sequence of calculations
        f.setRoundingMode(RoundingMode.HALF_EVEN);

        if (f instanceof DecimalFormat) {
            DecimalFormat df = (DecimalFormat) f;
            DecimalFormatSymbols dfs = df.getDecimalFormatSymbols();

            //set group separator to space instead of comma

            dfs.setGroupingSeparator(' ');

            //set Exponent symbol to minus 'e' instead of 'E'

            if (absv>EXP_UP) {
                dfs.setExponentSeparator("e+"); //force to display the positive sign in the exponent part
            } else {
                dfs.setExponentSeparator("e");
            }
            df.setDecimalFormatSymbols(dfs);

            //use exponent format if v is out side of [EXP_DOWN,EXP_UP]

            if (absv<EXP_DOWN || absv>EXP_UP) {
                df.applyPattern("0."+sharpByPrecision+"E0");
            } else {
                df.applyPattern("#,##0."+sharpByPrecision);
            }
        }
        return f.format(v);
    }

    /**
     * Convert "3.1416e+12" to "<b>3</b>.1416e<b>+12</b>"
     * It is a html format of a number which highlight the integer and exponent part
     */
    private static String htmlize(String s) {
        StringBuilder resu = new StringBuilder("<b>");
        int p1 = s.indexOf('.');

        if (p1>0) {
            resu.append(s.substring(0, p1));
            resu.append("</b>");
        } else {
            p1 = 0;
        }

        int p2 = s.lastIndexOf('e');
        if (p2>0) {
            resu.append(s.substring(p1, p2));
            resu.append("<b>");
            resu.append(s.substring(p2, s.length()));
            resu.append("</b>");
        } else {
            resu.append(s.substring(p1, s.length()));
            if (p1==0){
                resu.append("</b>");
            }
        }
        return resu.toString();
    }
}

หมายเหตุ: ฉันใช้ 2 ฟังก์ชันจากไลบรารี GUAVA หากคุณไม่ได้ใช้ GUAVA ให้รหัสด้วยตัวคุณเอง:

/**
 * Equivalent to Strings.repeat("#", n) of the Guava library: 
 */
private static String createSharp(int n) {
    StringBuilder sb = new StringBuilder(); 
    for (int i=0;i<n;i++) {
        sb.append('#');
    }
    return sb.toString();
}

1
หากคุณรู้ความแม่นยำให้ใช้ BigDecimal ดูdocs.oracle.com/javase/1.5.0/docs/api/java/math/…
Pyrolistical

5

อันนี้จะทำให้งานสำเร็จได้เป็นอย่างดีฉันรู้ว่าหัวข้อเก่า แต่ฉันกำลังดิ้นรนกับปัญหาเดียวกันจนกระทั่งฉันมาที่นี่ ฉันหวังว่าบางคนจะพบว่ามีประโยชน์

    public static String removeZero(double number) {
        DecimalFormat format = new DecimalFormat("#.###########");
        return format.format(number);
    }

5
new DecimalFormat("00.#").format(20.236)
//out =20.2

new DecimalFormat("00.#").format(2.236)
//out =02.2
  1. 0 สำหรับจำนวนหลักขั้นต่ำ
  2. แสดง # หลัก

ในขณะที่สิ่งนี้อาจช่วยแก้ปัญหาได้ แต่เป็นวิธีปฏิบัติที่ดีในการเพิ่มคำอธิบายสั้น ๆ เพื่อให้ชุมชนได้รับประโยชน์ (และเรียนรู้) จากคำตอบ
blurfus

4
String s = String.valueof("your int variable");
while (g.endsWith("0") && g.contains(".")) {
    g = g.substring(0, g.length() - 1);
    if (g.endsWith("."))
    {
        g = g.substring(0, g.length() - 1);
    }
}

คุณควรเพียงแค่ค้นหาตัวเลขที่ไม่ใช่ศูนย์แรกจากด้านขวาแล้วใช้ subString (และตรวจสอบว่าสตริงมี "." แน่นอน) ด้วยวิธีนี้คุณจะไม่เข้าสู่การสร้างสตริงชั่วคราวจำนวนมากระหว่างทาง
นักพัฒนา android

3

คำตอบที่ล่าช้า แต่ ...

คุณบอกว่าคุณเลือกที่จะเก็บตัวเลขของคุณกับประเภทคู่ ฉันคิดว่านี่อาจเป็นสาเหตุของปัญหาเพราะมันบังคับให้คุณเก็บจำนวนเต็มเป็นสองเท่า (และสูญเสียข้อมูลเริ่มต้นเกี่ยวกับลักษณะของค่า) สิ่งที่เกี่ยวกับการเก็บหมายเลขของคุณในอินสแตนซ์ของคลาสNumber (superclass ของทั้ง Double และ Integer) และพึ่งพา polymorphism เพื่อกำหนดรูปแบบที่ถูกต้องของแต่ละหมายเลข

ฉันรู้ว่ามันอาจไม่เป็นที่ยอมรับสำหรับ refactor ทั้งหมดของรหัสของคุณเนื่องจากมันสามารถสร้างผลลัพธ์ที่ต้องการได้โดยไม่ต้องมีโค้ดพิเศษ / การคัดเลือก / การแยกวิเคราะห์

ตัวอย่าง:

import java.util.ArrayList;
import java.util.List;

public class UseMixedNumbers {

    public static void main(String[] args) {
        List<Number> listNumbers = new ArrayList<Number>();

        listNumbers.add(232);
        listNumbers.add(0.18);
        listNumbers.add(1237875192);
        listNumbers.add(4.58);
        listNumbers.add(0);
        listNumbers.add(1.2345);

        for (Number number : listNumbers) {
            System.out.println(number);
        }
    }

}

จะสร้างผลลัพธ์ต่อไปนี้:

232
0.18
1237875192
4.58
0
1.2345

javascript มีตัวเลือกเดียวกันโดยวิธี :)
Pyrolistical

@Pyrolistical คุณช่วยอธิบายเพิ่มเติมอีกเล็กน้อยเกี่ยวกับงบของคุณได้ไหม? มันค่อนข้างไม่ชัดเจนสำหรับฉัน ... :)
เห็น

2

นี่คือสิ่งที่ฉันมาด้วย:

  private static String format(final double dbl) {
    return dbl % 1 != 0 ? String.valueOf(dbl) : String.valueOf((int) dbl);
  }

ซับง่ายเพียงใช้เวลาเพียงเพื่อ int ถ้าจำเป็นจริงๆ


1
ทำซ้ำสิ่งที่เฟลิกซ์เอเดลมานน์พูดไว้ที่อื่น: สิ่งนี้จะสร้างสตริงที่ไม่ขึ้นกับสถานที่ซึ่งอาจไม่เหมาะสมสำหรับผู้ใช้เสมอไป
JJ Brown

จุดยุติธรรมสำหรับกรณีการใช้งานของฉันนี่ไม่ใช่ปัญหาฉันไม่แน่ใจทั้งหมดตอนนี้ แต่ฉันคิดว่าใครสามารถใช้ String.format (กับสถานที่ที่ต้องการ) แทน valueOf
keisar

2

จัดรูปแบบราคาด้วยการจัดกลุ่มการปัดเศษไม่มีศูนย์ที่ไม่จำเป็น (เป็นสองเท่า)

กฎ:

  1. ไม่มีเลขศูนย์ในตอนท้าย ( 2.0000 = 2; 1.0100000 = 1.01)
  2. จำนวนสูงสุดสองหลักหลังจุด ( 2.010 = 2.01; 0.20 = 0.2)
  3. การปัดเศษหลังจากตัวเลขตัวที่ 2 หลังจากจุด ( 1.994 = 1.99; 1.995 = 2; 1.006 = 1.01; 0.0006 -> 0)
  4. ผลตอบแทน0( null/-0 = 0)
  5. เพิ่ม$( = $56/-$56)
  6. การจัดกลุ่ม ( 101101.02 = $101,101.02)

ตัวอย่างเพิ่มเติม:

-99.985 = -$99.99

10 = $10

10.00 = $10

20.01000089 = $20.01

เขียนใน Kotlin เป็นส่วนเสริมความสนุกสนานของ Double (ใช้ใน Android) แต่สามารถแปลงเป็น Java ได้อย่างง่ายดายทำให้มีการใช้คลาส Java

/**
 * 23.0 -> $23
 *
 * 23.1 -> $23.1
 *
 * 23.01 -> $23.01
 *
 * 23.99 -> $23.99
 *
 * 23.999 -> $24
 *
 * -0.0 -> $0
 *
 * -5.00 -> -$5
 *
 * -5.019 -> -$5.02
 */
fun Double?.formatUserAsSum(): String {
    return when {
        this == null || this == 0.0 -> "$0"
        this % 1 == 0.0 -> DecimalFormat("$#,##0;-$#,##0").format(this)
        else -> DecimalFormat("$#,##0.##;-$#,##0.##").format(this)
    }
}

วิธีใช้:

var yourDouble: Double? = -20.00
println(yourDouble.formatUserAsSum()) // will print -$20

yourDouble = null
println(yourDouble.formatUserAsSum()) // will print $0

เกี่ยวกับ DecimalFormat : https://docs.oracle.com/javase/6/docs/api/java/text/DecimalFormat.html


1
public static String fmt(double d) {
    String val = Double.toString(d);
    String[] valArray = val.split("\\.");
    long valLong = 0;
    if(valArray.length == 2){
        valLong = Long.parseLong(valArray[1]);
    }
    if (valLong == 0)
        return String.format("%d", (long) d);
    else
        return String.format("%s", d);
}

ฉันต้องใช้สาเหตุนี้ทำให้d == (long)dฉันละเมิดรายงานโซนาร์


1
float price = 4.30;
DecimalFormat format = new DecimalFormat("0.##"); // Choose the number of decimal places to work with in case they are different than zero and zero value will be removed
format.setRoundingMode(RoundingMode.DOWN); // choose your Rounding Mode
System.out.println(format.format(price));

นี่คือผลลัพธ์ของการทดสอบบางอย่าง:

4.30     => 4.3
4.39     => 4.39  // Choose format.setRoundingMode(RoundingMode.UP) to get 4.4
4.000000 => 4
4        => 4

แล้วประมาณ 1.23450000 ล่ะ
Alex78191

1.23450000 => 1.23
Ahmed Mihoub

0

นี่คือสองวิธีในการบรรลุเป้าหมาย ครั้งแรกวิธีที่สั้นกว่า (และอาจดีกว่า):

public static String formatFloatToString(final float f)
  {
  final int i=(int)f;
  if(f==i)
    return Integer.toString(i);
  return Float.toString(f);
  }

และนี่คือวิธีที่ยาวขึ้นและแย่ลง:

public static String formatFloatToString(final float f)
  {
  final String s=Float.toString(f);
  int dotPos=-1;
  for(int i=0;i<s.length();++i)
    if(s.charAt(i)=='.')
      {
      dotPos=i;
      break;
      }
  if(dotPos==-1)
    return s;
  int end=dotPos;
  for(int i=dotPos+1;i<s.length();++i)
    {
    final char c=s.charAt(i);
    if(c!='0')
      end=i+1;
    }
  final String result=s.substring(0,end);
  return result;
  }

1
บางครั้งเมื่อคุณทำสิ่งต่าง ๆ ได้ง่ายขึ้นรหัสที่อยู่ด้านหลังนั้นซับซ้อนและปรับให้เหมาะสมน้อยลง ... แต่ใช่คุณสามารถใช้ฟังก์ชั่น API ในตัวได้มากมาย ...
นักพัฒนา Android

1
คุณควรเริ่มต้นด้วยวิธีง่าย ๆ และเมื่อคุณทราบแล้วว่าคุณมีปัญหาเรื่องประสิทธิภาพคุณควรปรับให้เหมาะสมเท่านั้น รหัสสำหรับมนุษย์ที่จะอ่านอีกครั้งและอีกครั้ง การทำให้มันรันเร็วเป็นเรื่องรอง หากไม่ใช้ API มาตรฐานทุกครั้งที่เป็นไปได้คุณมีแนวโน้มที่จะแนะนำบั๊กมากกว่าและทำให้ยากต่อการเปลี่ยนแปลงในอนาคตเท่านั้น
Pyrolistical

3
ฉันจะโต้แย้งรหัสที่คุณเขียนแบบนั้นจะไม่เป็นไปได้เร็วขึ้น JVM นั้นฉลาดมากและคุณไม่รู้ว่าจริง ๆ แล้วมันเร็วหรือช้าอะไรบางอย่างจนกว่าคุณจะโพรไฟล์ สามารถตรวจพบและแก้ไขปัญหาประสิทธิภาพการทำงานเมื่อมีปัญหา คุณไม่ควรปรับให้เหมาะสมก่อนเวลาอันควร เขียนโค้ดเพื่อให้ผู้คนอ่านไม่ใช่ว่าคุณจะจินตนาการว่าเครื่องกำลังจะทำงาน เมื่อมันกลายเป็นปัญหาด้านประสิทธิภาพให้เขียนโค้ดใหม่ด้วย profiler
Pyrolistical

2
มีคนอื่นแก้ไขคำตอบเพื่อปรับปรุงการจัดรูปแบบโค้ด ฉันกำลังตรวจสอบการแก้ไขหลายสิบครั้งเพื่อขออนุมัติและกำลังจะอนุมัติการแก้ไขที่นี่ แต่การแก้ไขนั้นไม่สอดคล้องกันดังนั้นฉันจึงแก้ไข ฉันยังปรับปรุงไวยากรณ์ของตัวอย่างข้อความ
Steve Vinoski

1
ฉันไม่เข้าใจ หากคุณกล่าวว่าการจัดรูปแบบไม่สำคัญทำไมคุณใช้เวลาในการเปลี่ยนรูปแบบกลับ
OrhanC1

0

สำหรับ Kotlin คุณสามารถใช้ส่วนขยายที่ชอบ:

fun Double.toPrettyString() =
    if(this - this.toLong() == 0.0)
        String.format("%d", this.toLong())
    else
        String.format("%s",this)

0

ต่อไปนี้เป็นคำตอบอื่นที่มีตัวเลือกต่อท้ายทศนิยมเฉพาะในกรณีที่ทศนิยมไม่เป็นศูนย์

   /**
     * Example: (isDecimalRequired = true)
     * d = 12345
     * returns 12,345.00
     *
     * d = 12345.12345
     * returns 12,345.12
     *
     * ==================================================
     * Example: (isDecimalRequired = false)
     * d = 12345
     * returns 12,345 (notice that there's no decimal since it's zero)
     *
     * d = 12345.12345
     * returns 12,345.12
     *
     * @param d float to format
     * @param zeroCount number decimal places
     * @param isDecimalRequired true if it will put decimal even zero,
     * false will remove the last decimal(s) if zero.
     */
    fun formatDecimal(d: Float? = 0f, zeroCount: Int, isDecimalRequired: Boolean = true): String {
        val zeros = StringBuilder()

        for (i in 0 until zeroCount) {
            zeros.append("0")
        }

        var pattern = "#,##0"

        if (zeros.isNotEmpty()) {
            pattern += ".$zeros"
        }

        val numberFormat = DecimalFormat(pattern)

        var formattedNumber = if (d != null) numberFormat.format(d) else "0"

        if (!isDecimalRequired) {
            for (i in formattedNumber.length downTo formattedNumber.length - zeroCount) {
                val number = formattedNumber[i - 1]

                if (number == '0' || number == '.') {
                    formattedNumber = formattedNumber.substring(0, formattedNumber.length - 1)
                } else {
                    break
                }
            }
        }

        return formattedNumber
    }

-1

นี่คือคำตอบที่ใช้งานได้จริง (การรวมคำตอบที่แตกต่างกันที่นี่)

public static String removeTrailingZeros(double f)
{
    if(f == (int)f) {
        return String.format("%d", (int)f);
    }
    return String.format("%f", f).replaceAll("0*$", "");
}

1
คุณไม่ได้แทนที่ POINT ตัวอย่างเช่น "100.0" จะถูกแปลงเป็น "100"
VinceStyling

ถ้า (f == (int) f) ดูแลสิ่งนั้น
Martin Klosi

2
Fails on f = 9999999999.00
Dawood ibn Kareem

-4

ฉันรู้ว่านี่เป็นเธรดเก่าแก่จริงๆ .. แต่ฉันคิดว่าวิธีที่ดีที่สุดในการทำเช่นนี้คือ:

public class Test {

    public static void main(String args[]){
        System.out.println(String.format("%s something",new Double(3.456)));
        System.out.println(String.format("%s something",new Double(3.456234523452)));
        System.out.println(String.format("%s something",new Double(3.45)));
        System.out.println(String.format("%s something",new Double(3)));
    }
}

เอาท์พุท:

3.456 something
3.456234523452 something
3.45 something
3.0 something

ปัญหาเดียวคือประเด็นสุดท้ายที่. 0 ไม่ได้ถูกลบออก แต่ถ้าคุณสามารถอยู่กับสิ่งนั้นได้ผลดีที่สุด % .2f จะปัดเศษเป็นทศนิยม 2 หลักสุดท้าย ทศนิยมจะจัดรูปแบบดังนั้น หากคุณต้องการตำแหน่งทศนิยมทั้งหมด แต่ไม่ใช่ศูนย์ต่อท้ายนี่จะทำงานได้ดีที่สุด


2
รูปแบบทศนิยมที่มีรูปแบบของ "#. ##" จะไม่เก็บค่าพิเศษ 0 หากไม่ต้องการ: System.out.println(new java.text.DecimalFormat("#.##").format(1.0005));จะพิมพ์1
Aleks G

นั่นคือจุดของฉัน จะทำอย่างไรถ้าคุณต้องการให้ 0.0005 ปรากฏขึ้นหากมี คุณจะปัดเศษทศนิยม 2 หลัก
sethu

สหกรณ์จะขอวิธีการพิมพ์ค่าจำนวนเต็มเก็บไว้ในคู่ :)
Aleks G

-8
String s = "1.210000";
while (s.endsWith("0")){
    s = (s.substring(0, s.length() - 1));
}

สิ่งนี้จะทำให้สตริงที่จะลด 0 tails


1
นี่เป็นคำตอบที่ดีสำหรับคำถามหากพวกเขาสนใจเพียงแค่เลขศูนย์ต่อท้ายที่ถูกทิ้งไปคุณจะเปลี่ยนรหัสของคุณอย่างไรเพื่อตัดทศนิยมทศนิยมต่อท้าย เช่น "1. "
bakoyaro

29
ระวังวิธีแก้ปัญหาของคุณจะแปลง 1,000 เป็น 1 ซึ่งผิด
Aleks G
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.