感谢您花时间回答我的问题。
我有一个double
值(比如说 22.35)。我需要将其解析为 aString
并得到 2235。以下代码无法正常工作。
double totalPrice = 22.35;
DecimalFormat df = new DecimalFormat("#.##");
String[] temp = df.format(totalPrice).split(".");
String amount = temp[0] + temp[1];
我不断收到异常ArrayIndexOutOfBounds
。还有什么方法可以做到这一点?提前致谢!