Methods for Conversion from long to String in Java

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

Method

Description

Syntax

String.valueOf()

The valueOf() method converts data from its internal form into human-readable form. It is a static method that is overloaded within a string for all of Java’s built-in types so that each type can be converted properly into a string.

String str = String.valueOf(varLong);

Long.toString()

Object class contains toString() method. We can use toString() method to get string representation of an object. Whenever we try to print the Object reference then internally toString() method is invoked. If we did not define toString() method in your class then Object class toString() method is invoked otherwise our implemented/Overridden toString() method will be called.

String str = Long.toString(varLong);

new Long(long l)

This constructor is not valid in Java 9.

String str = new Long(varLong).toString();

String.format()

The java string format() method returns a formatted string using the given locale, specified format string and arguments.

String str = String.format(“%d”, varLong);

Using StringBuilder, StringBuffer object

StringBuffer is a peer class of String that provides much of the functionality of strings. The string represents fixed-length, immutable character sequences while StringBuffer represents growable and writable character sequences.

String str = new StringBuilder().append(varLong).toString();

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:...