How do you left pad an int with zeros when converting to a String in java?
I’m basically looking to pad out integers up to 9999 with leading zeros (e.g. 1 = 0001).
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use
java.lang.String.format(String,Object...)like this:for zero-padding with a length of 5. For hexadecimal output replace the
dwith anxas in'%05x'.The full formatting options are documented as part of
java.util.Formatter.