Getting months as 01,02 instead of 1,2
问题 I am working with the Calender class and more specifically I need to get back all 12 months as two numbers. If I use the following code: int month = (myCalendar.get(Calendar.MONTH)) +1; This is what I get for the different months: 1,2,3,4,5,6,7,8,9,10,11,12 But what I really need is: 01,02,03,04,05,06,07,08,09,10,11,12 This is beacuse I need to make substrings and it will go wrong if the number of ints I get. Is there an easy way to fix this? I could use an if statement and check if the whole