需要帮助对整数执行某些特定格式化(java)

时间:2013-03-20 01:49:11

标签: java decimalformat

好吧我正在研究无线电节目,目前无线电频率是整数,如; 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

谢谢!

1 个答案:

答案 0 :(得分:3)

为了不弄乱浮点数,假设它们都是小数点后的所有数字(无论如何都是无线电台),你可以使用:

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