input - 16 (integer); Output - "0016" ; input - 201 (integer); Output - "0201" ; intput - 1716 (integer); Output - "1716" ;
在VB.net中我可以使用:
dim num as integer dim str as string str = Format(num,"0000")
我怎么能在java中做同样的事情?提前致谢…
new DecimalFormat("0000").format(number);
请查看here以获取更多详细信息.