1. 程式人生 > >int轉String 使用0來填充長度

int轉String 使用0來填充長度

import java.text.DecimalFormat;
//(1)、如果數字1是字串,如下處理:
String str1=”1”;
DecimalFormat df=new DecimalFormat(“0000”);
String str2=df.format(Integer.parseInt(str1));
System.out.println(str2);
//(2)、如果數字1是整型,如下處理:
int str1=1;
DecimalFormat df=new DecimalFormat(“0000”);
String str2=df.format(str1);
System.out.println(str2);

簡便的寫法
String str=String.format(“%05d”,22);