数字转中文

package com.yenange.t2;

public class NumConverse {
// 5. 编写一函数,将一个数字转换成中文返回。数字的最大值为99999,
// 最小值为0,没有小数。例:输入“3587”,返回“三千伍百八十七”。
public static void main(String[] args) {
int num=54321;
System.out.println(num+"---"+convert(num));
}

public static String convert(int param) {
String[] strArr = new String[] { "个", "十", "百", "千", "万"};
String[] numStr = new String[] { "零", "壹", "贰", "叁", "肆", "伍", "陆",
"柒", "捌", "玖" };
StringBuffer sf = new StringBuffer();
boolean b = false;
//起始值:总长度-1
for (int i = (param + "").length() - 1; i >= 0; i--) {
//临时字符串,取一个字符,从前往后取,取一个,往前走一个(i--)
String temp = (param + "").substring((param + "").length() - 1 - i,
(param + "").length() - i);
//如果这一个字符为0
if ("0".equals(temp)) {
//而且前面的一个字符也为0, 进行下一轮循环
if (b) {
continue;
}
//如果前面的一个字符不为0,则标识一下,并添加此字符的数字的中文---其实就是零
b = true;
sf.append(numStr[Integer.parseInt(temp)]);
} else {
//否则标识为false,并添加此字符的中文及单位
b = false;
sf.append(numStr[Integer.parseInt(temp)]).append(strArr[i]);
}
}
String re = sf.toString();
re =re.length()==1?re:re.substring(0, re.length() - 1);
return re;
}
}

你可能感兴趣的:(中文)