Java Int to string

Java int to string example using Integer.toString() The Integer.toString() method is used to convert int to string in Java. It takes an integer value as an argument and returns a string representing of it. package com.w3schools; public class IntToString { public static void main(String args[]){ int num = 123; String str = Integer.toString(num); System.out.println(“String is: … Read more