Java Program for long-to-String Conversion

For converting any data type to string type, we can simply add/+ empty string indicated by double quotes(“).

Syntax:

String str = l+" ";

Below is the implementation of the above method:

Java




// Java program to convert Long to String
// using + operator
 
public class GFG {
 
    // main method
    public static void main(String args[])
    {
 
        // create a Long
        Long varLong = 999999999999L;
 
        // convert into String
        String str = varLong + " ";
 
        // printing the type of str to
        // show that long has been converted to string
        System.out.println("Converted type : "
                           + str.getClass().getName());
 
        // print Long as String
        System.out.println(str);
    }
}


Output

Converted type : java.lang.String
999999999999 

Java Program to Convert Long to String

The long to String conversion in Java generally comes in need when we have to display a long number in a GUI application because everything is displayed in string form. In this article, we will learn about Java Programs to convert long to String.

Given a Long number, the task is to convert it into a String in Java.

Examples of Long-to-String Conversion

Input: Long = 20L
Output: “20”

Input: Long = 999999999999L
Output: “999999999999”

Similar Reads

Java Program for long-to-String Conversion

For converting any data type to string type, we can simply add/+ empty string indicated by double quotes(“)....

Methods for Conversion from long to String in Java

...

Example of Methods for Converting ong to String

There are certain methods to Convert Long to String as mentioned below:...

Contact Us