在Java / Indian编号系统中格式化数字

时间:2014-08-01 10:32:07

标签: java string-formatting decimalformat

我想以下列格式获取数字:

1000   =    1,000
10000  =   10,000
100000 = 1,00,000

我试过了:

import java.text.DecimalFormat;

public class StringProcessingDemo {

public static void main(String[] args) {
     String pattern = "##,##,###.###";
        DecimalFormat myFormatter = new DecimalFormat(pattern);
        String output = myFormatter.format(2564484.125);            
        System.out.println(output);
    }
}

但是尽管有##,##,###.###模式,我的输出为2,564,484.125,而我认为我应该将其作为25,64,484.125。为什么呢?

3 个答案:

答案 0 :(得分:4)

您可以使用此

来达到您的要求
public static String format(double value) {
    if(value < 1000) {
        return format("###", value);
    } else {
        double hundreds = value % 1000;
        int other = (int) (value / 1000);
        return format(",##", other) + ',' + format("000", hundreds);
    }
}

private static String format(String pattern, Object value) {
    return new DecimalFormat(pattern).format(value);
}

答案 1 :(得分:2)

  

但是尽管模式是##,##,###。###我的输出为2,564,484.125,而我认为我应该得到它为25,64,484.125。为什么呢?

您可以提供多个分组字符,但只使用一个。来自Javadoc

  

如果您提供具有多个分组字符的模式,则最后一个和整数结尾之间的间隔是使用的

     

所以“#,##,###,####”==“######,####”==“##,####,####”

使用标准Java机制似乎无法格式化Lakh格式,请参阅Number formatting in java to use Lakh format instead of million format了解解决方案。

答案 2 :(得分:-1)

这可能是因为数字格式:百万,十亿和万亿......所以,我已经根据您的需要创建了一个java函数:

String lakhFormattedComma(Double d) {
  String[] str = d.toString().split("\\.");
  int len = str[1].length();
  if (str[1].substring(len - 3, len - 1).equals("E-")) {
    return String.format("%." + (len - 3 + Integer.valueOf(str[1].substring(len - 1))) + "f", d);
  } else if (str[1].substring(len - 2, len - 1).equals("E")) {
    str = String.format("%." + (len - 2 - Integer.valueOf(str[1].substring(len - 1))) + "f", d).split("\\.");
  }
  String out = "." + str[1];
  len = str[0].length();
  if (len < 3) {
    return str[0] + out;
  }
  out = str[0].substring(len - 3) + out;
  for (int i = len - 5; i >= 0; i = i - 2) {
    out = str[0].substring(i, i + 2) + "," + out;
    if (i == 1) {
      out = str[0].substring(0, 1) + "," + out;
    }
  }
  return out;
}