经过简单的除法后,我尝试将结果舍入到2位小数。一切正常,但在某些设备上,我得到这个符号“2”作为划分的结果。当我尝试将其舍入到2个小数位时,此符号会导致数字格式异常。 有人可以向我解释为什么会这样,以及我如何解决它
我的代码:
double total = 0;
double average = 0;
for (HashMap.Entry<String, Double> entry : ratings.entrySet()) {
String person = entry.getKey();
Double rating = entry.getValue();
total += rating;
}
average = total / ratings.size();
ratingsDisplay.setTitleText(roundTo2Decimals(average) + "");
public double roundTo2Decimals(double val) {
DecimalFormat df2 = new DecimalFormat("###.##");
return Double.valueOf(df2.format(val)); <== this is where the crash happens
}
错误日志:
0java.lang.NumberFormatException: Invalid double: "٢"
1at java.lang.StringToReal.invalidReal(StringToReal.java:63)
2at java.lang.StringToReal.initialParse(StringToReal.java:164)
3at java.lang.StringToReal.parseDouble(StringToReal.java:282)
4at java.lang.Double.parseDouble(Double.java:301)
5at java.lang.Double.valueOf(Double.java:338)
6at com.ducky.flipplanet.ToonViewer.roundTo2Decimals(ToonViewer.java:2750)
7at com.ducky.flipplanet.ToonViewer.calculateAndShowRatings(ToonViewer.java:2919)
8at com.ducky.flipplanet.ToonViewer.loadFromDocId(ToonViewer.java:2850)
9at com.ducky.flipplanet.ToonViewer$79.onDataChange(ToonViewer.java:4816)
10at com.firebase.client.core.ValueEventRegistration.fireEvent(ValueEventRegistration.java:53)
11at com.firebase.client.core.view.DataEvent.fire(DataEvent.java:45)
12at com.firebase.client.core.view.EventRaiser$1.run(EventRaiser.java:38)
13at android.os.Handler.handleCallback(Handler.java:739)
14at android.os.Handler.dispatchMessage(Handler.java:95)
15at android.os.Looper.loop(Looper.java:145)
16at android.app.ActivityThread.main(ActivityThread.java:5938)
17at java.lang.reflect.Method.invoke(Native Method)
18at java.lang.reflect.Method.invoke(Method.java:372)
19at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1400)
20at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1195)
答案 0 :(得分:4)
您获得的角色在Unicode中称为ARABIC-INDIC DIGIT TWO
。
以下是其他数字:
٠ 0
١ 1
٢ 2
٣ 3
٤ 4
٥ 5
٦ 6
٧ 7
٨ 8
٩ 9
解决此问题的一种方法是将数字替换为replace
将其转换为英语。但是,这可能对某些情况不起作用。此外,您应该知道世界上还有其他数字系统。
因此,您应该将小数格式的区域设置设置为en_US
。这样,就不会出现奇怪的角色。
DecimalFormat formatter = (DecimalFormat) DecimalFormat.getNumberInstance(Locale.US);
formatter.applyPattern("###.##");
String fString = formatter.format(100);
System.out.println(fString);
答案 1 :(得分:0)
TextBox
//基于Sweeper回答:)
答案 2 :(得分:0)
String result = String.format(Locale.US,"%.2f", INT_VALUE);