String right = String.format("%06d", Integer.valueOf(next));
6:代表全部位数
右侧补0:
DecimalFormat right=new DecimalFormat("0.000000");
String number= right.format(Integer.valueOf(15));
String right = String.format("%06d", Integer.valueOf(next));
6:代表全部位数
右侧补0:
DecimalFormat right=new DecimalFormat("0.000000");
String number= right.format(Integer.valueOf(15));