number formatting
Hi,I want to append "0" to single digit numbers like 1, 2, 3, 4,..etc. I want to do it using java .eg... 01,02,03,04.........................10,11,12...............thanks in advance
java.text.DecimalFormat.I believe "00" is the format you want, or maybe "#,#00", if you want a thousands separator.