int 数字0123456转汉子零一二三四五六,后台Java

因为一些原因数据库保存的是int类型,现在转换为汉字,blog第一篇文章。

//转换时间

String Numeric(int index)
{
    String[] num ={ "零", "一", "二", "三", "四", "五", "六"};
    return num[index];

}


for(int i=0; i< page.getRows().size();i++){
int status = page.getRows().get(i).getWeek();
System.out.println(status);
String han = Numeric(status);
}


你可能感兴趣的:(int 数字0123456转汉子零一二三四五六,后台Java)