好吧,我正在做一个广播节目,目前广播频率是整数,例如;107900、87900。
我需要将这样的数字转换成看起来像这样的字符串,
107.9、87.9
我一直在玩 DecimalFormat 但没有任何成功。任何提示或提示表示赞赏!
这是我尝试过的一些事情,
frequency = 107900;
double newFreq = frequency / 1000;
String name = String.valueOf(newFreq);
result = 107.0
double freqer = 107900/1000;
DecimalFormat dec = new DecimalFormat("#.0");
result = 107.0
int frequency = 107900;
DecimalFormat dec = new DecimalFormat("#.0");
result = 107900.0
谢谢!