我需要在TextView中打印一个必须具有固定尺寸的数字。

例如:


我的Int值为15,在TextView中,我应该具有00000015。
我的Int值为15125,在我的TextView中,我应该具有00015125。


像加0这样的东西总是带有8个数字的文本。

您能用小代码为我提供一种有效的方法吗?

最佳答案

String.format("%08d", yournumber);

长度为8的零填充。您可能会找到更多的方法java.util.Formatter Class Detailed

10-06 02:03