好吧,我正在广播节目中工作,目前的无线电频率是整数,例如; 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


谢谢!

最佳答案

为了避免弄乱浮点,并假设它们都是小数点后一位(无论如何,因为无线电台在这里),可以使用:

String.format ("%d.%d", freq / 1000, (freq / 100) % 10)


例如,请参阅以下完整程序:

public class Test {
    static String radStat (int freq) {
        return String.format ("%d.%d", freq / 1000, (freq / 100) % 10);
    }

    public static void main(String args[]) {
        System.out.println("107900 -> " + radStat (107900));
        System.out.println(" 87900 -> " + radStat ( 87900));
        System.out.println("101700 -> " + radStat (101700));
    }
}


输出:

107900 -> 107.9
 87900 -> 87.9
101700 -> 101.7

10-05 21:56