Problem Statement
You need to convert long to a string value in your java program.
Solution
Use the toString method to convert long to string in Java.
public class Main {
public static void main(String[] args) {
System.out.println("Abundantcode.com Java Tutorials");
// Converting a string to long using Long wrapper class.
Long output1 = new Long("75");
// COnvert a Long to string using toString method
String output2 = output1.toString();
System.out.println(output2);
}
}The output for the above program is
Abundantcode.com Java Tutorials
75
Leave a Reply