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.
目前我正在使用以下东西
String.format({0,16:e6},freq)
但这会以以下符号返回我的频率
0.000000e+000
我需要它在
0.000000e+00
所以我需要将指数因子减少一个零。有人知道怎么做吗?
谢谢
好的,我已经弄清楚如何解决这个问题。@GSerg 的评论是正确的,但有一个解决方法。
String.format("{0,16:0.000000e+00}",freq)
这就是我解决问题的方法。感谢您的支持。