Spring Boot我的转换问题字符串双精度而不带e
您好,我的简单项目使用转换字段未转换问题
buildingDTO.setHouseArea(Double.parseDouble(technicalParamDTO.getBuildingSquare()));
输出 ---> “建筑场”:1.0E-4, 这是我需要的格式 --> 0.0001
Hi my simple project using convert field not converting problem
buildingDTO.setHouseArea(Double.parseDouble(technicalParamDTO.getBuildingSquare()));
Output ---> "buildingField":1.0E-4 ,
this is the format i need --> 0.0001
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试如下所示的示例:
输出:
如果您想将“,”替换为“.”你可以试试这个:
输出:
Try this example as shown here :
Output :
If you want to replace "," with "." you can try this :
Output :