class Ideone{ public static void main (String[] args) throws java.lang.Exception { //int to string using value of int x = 12345; String y = String.valueOf(x); }}