The format() method of the String class is used to convert string to integer with leading zeros.
Example:
package com.w3schools; public class StringToInt { public static void main(String args[]){ String str="000000575"; /* String to int conversion with leading zeroes * the * the number, this ensures the leading zeroes */ str = String.format( System.out.println("Output String: "+str); } }
Output:
Output String: 000575