posts - 5,  comments - 1,  trackbacks - 0

static String t1 = "零壹贰叁肆伍陆柒捌玖";

static char[] n = { '仟', ' ', '拾', '佰' };

static char[] n1 = {'萬','亿'};

static char end = '圆';


public static void print(String value, int pos, boolean b) {
if (pos == 0) {
System.out.print(end);
return;
}
String value2 = value.substring(1, value.length());
int printPos = value.charAt(0) - '0';
if (printPos != 0) {
if (b == true)
System.out.print(t1.charAt(0));
System.out.print(t1.charAt(printPos));
System.out.print(printPos == 0 ? "" : (n[pos % 4] == ' ' ? "": n[pos % 4]));
}
if (pos % 4 == 1 && pos > 1) {
System.out.print(n1[(pos / 4) - 1]);
print(value2, pos - 1,  false);
return;
}
print(value2, pos - 1, printPos == 0 ? true : false);
}

使用方法
print("10010202070", 11, false);
还没看懂留着慢慢看。。。
哪位高手给添点注释,感激不尽。。。。

posted on 2007-01-21 01:04 阿健 阅读(446) 评论(0)  编辑  收藏 所属分类: java

只有注册用户登录后才能发表评论。


网站导航:
 
<2007年1月>
31123456
78910111213
14151617181920
21222324252627
28293031123
45678910

常用链接

留言簿(2)

随笔分类

随笔档案

相册

BLOG

Web Site

搜索

  •  

最新评论

  • 1. re: 《大腕》IT版
  • 顶一下! 不错! 框架越多越好, 您要是只整了个 Struts, 您都不要意思跟人说您是做 Java 的!
  • --BeanSoft

阅读排行榜

评论排行榜