我已经在我的设备中尝试了这一点,并且工作正常。但是,在某些Android设备中,该符号放置在错误的位置。这是我的代码:
df['vola'] = df['a'].rolling(window=2).std()
预期结果是:Rp 25.000,00
答案 0 :(得分:0)
String pattern = "Rp ###,###.000 ";
DecimalFormat decimalFormat = new DecimalFormat(pattern);
String format = decimalFormat.format(25.000);
System.out.println(format);
-尝试此操作,小数点后的零将不会丢失。该代码的输出是。
Rp 25.000
让我知道是否有不清楚的地方。