使用Java自动将测量格式化为工程单位

时间:2011-02-18 00:35:40

标签: java string format notation

我正在尝试找到一种方法来自动将测量和单位格式化为engineering notation中的字符串。这是科学记数法的一个特例,因为指数总是三的倍数,但用千,兆,毫,微前缀表示。

这与this post类似,但它应该处理整个SI单位和前缀范围。

例如,我正在使用一个可以格式化数量的库: 12345.6789 Hz将格式化为12 kHz或12.346 kHz或12.3456789 kHz 1234567.89 J的格式为1 MJ或1.23 MJ或1.2345 MJ 等等。

JSR-275 / JScience处理单位测量确定,但我还没有找到能够根据测量的大小自动计算最合适的缩放前缀的东西。

干杯, 萨姆。

1 个答案:

答案 0 :(得分:3)

import java.util.*;
class Measurement {
    public static final Map<Integer,String> prefixes;
    static {
        Map<Integer,String> tempPrefixes = new HashMap<Integer,String>();
        tempPrefixes.put(0,"");
        tempPrefixes.put(3,"k");
        tempPrefixes.put(6,"M");
        tempPrefixes.put(9,"G");
        tempPrefixes.put(12,"T");
        tempPrefixes.put(-3,"m");
        tempPrefixes.put(-6,"u");
        prefixes = Collections.unmodifiableMap(tempPrefixes);
    }

    String type;
    double value;

    public Measurement(double value, String type) {
        this.value = value;
        this.type = type;
    }

    public String toString() {
        double tval = value;
        int order = 0;
        while(tval > 1000.0) {
            tval /= 1000.0;
            order += 3;
        }
        while(tval < 1.0) {
            tval *= 1000.0;
            order -= 3;
        }
        return tval + prefixes.get(order) + type;
    }

    public static void main(String[] args) {
        Measurement dist = new Measurement(1337,"m"); // should be 1.337Km
        Measurement freq = new Measurement(12345678,"hz"); // should be 12.3Mhz
        Measurement tiny = new Measurement(0.00034,"m"); // should be 0.34mm

        System.out.println(dist);
        System.out.println(freq);
        System.out.println(tiny);

    }

}