Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Java 中,如何将特殊格式的 double 的字符串表示形式转换为 double?
例如,1.00 表示为 1d-2,而 1.25 表示为 1.25?
谢谢
如果您能以某种方式将该 1d-2 转换为适当的双精度(例如 1.0 或 1.5),那么只需使用 double.parseDouble();