I have an int between 1 - 99. How do I get it to always be a double digit, ie: 01, 04, 21?
|
|
|
Yet another way
EDIT: The code is short enough that the JIT can compile it to nothing. ;)
prints
|
|||||||||||
|
|
Presumably you mean to store the number in a String. Since JDK1.5 there has been the String.format() method, which will let you do exactly what you want:
One of the nice things about String.format() is that you can use it to build up more complex strings without resorting to lots of concatenation, resulting in much cleaner code.
|
|||
|
|
|
You can do this with NumberFormat:
Note - String.format() is a Java 5 method. If you're using Java 5 or above you can do:
as mentioned in other answers. |
|||||
|
|
You can't do it just using an int. You'll have to convert between Strings (for display) and back to ints (for calculations). You can use the Java Formatter to format your Strings based on the input. |
|||
|
|
|
One possible solution:
|
|||||||
|
|
use number format http://download.oracle.com/javase/6/docs/api/java/text/NumberFormat.html |
||||
|
|
