
it possible to convert long datatype into string in java if possible means how

class ConvertLongToString
{
public static void main(String[] args)
{
long l=123456;
String st=Long.toString(l);
System.out.println(st);
}
}
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.