//Java code to convert an Integer to String
public class Main {
public static void main(String args[]) {
int a = 10;
int b = 20;
//variable to store result
String result = null;
//converting integer to string
result = Integer.toString(a);
System.out.println("result (value of a as string) = " + result);
result = Integer.toString(b);
System.out.println("result (value of b as string) = " + result);
}
}
Output
result (value of a as string) = 10
result (value of b as string) = 20
Java code to convert an Integer to String
Output