java中的字符串格式?
输入字符串:115.0000
输出字符串应该是这样的:115.00
我使用了这段代码:
String.format("%.2f","115.0000");
我得到了IllegalArgumentException
。我现在能做什么?
Input String: 115.0000
Output String should be like: 115.00
i used this code:
String.format("%.2f","115.0000");
i got IllegalArgumentException
. What can i do now?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在提交一个字符串,但告诉它需要一个浮点值。删除数字两边的引号(第二个参数)。
You're submitting a string, but telling it to expect a floating point value. Remove the quotes around the number (second parameter).