Here is the String, for example: "Apple", and I would like to add zero to fill in 8 chars. I would like to show the result like this;' "000Apple" How can I do so? Thank you.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
In case you have to do it without the help of a library:
(Works, as long as your String isn't longer than 8 chars.) |
|||||
|
This is from commons-lang. See javadoc |
|||||||||||||||
|
|
|||||||||||||||
|
|
Use Apache Commons StringUtils.leftPad (or look at the code to make your own function). |
|||
|
|
|
|||
|
|
|
|||
|
|
|
You may have to take care of edgecase. This is a generic method.
|
|||||
|
|
It isn't pretty, but it works. If you have access apache commons i would suggest that use that
|
|||||
|