java 数字的位数不够在前面补0
2018-10-25 本文已影响0人
特_尼
方法
int str1=1;
DecimalFormat df=new DecimalFormat("0000");
String str2=df.format(str1);
System.out.println(str2);
装载:https://blog.csdn.net/u012626724/article/details/50957133
int str1=1;
DecimalFormat df=new DecimalFormat("0000");
String str2=df.format(str1);
System.out.println(str2);
装载:https://blog.csdn.net/u012626724/article/details/50957133