Conversion from Long to String in Java

Java conversion from Long to String: Here, we are going to learn how to convert a given long value to string in Java?
Submitted by IncludeHelp, on July 15, 2019

Given a long value and we have to convert it into string.

Java conversion from Long to String

To convert a Long to String, we use toString() method of Long class, it accepts a long value and returns the string value.

Syntax:

    Long.toString(long);

Java code to convert a Long to String

//Java code to convert along to String
public class Main {
    public static void main(String args[]) {
        long a = 112120;
        long b = 2121210;

        //variable to store result
        String result = null;

        //converting long to string
        result = Long.toString(a);
        System.out.println("result (value of a as string) = " + result);

        result = Long.toString(b);
        System.out.println("result (value of b as string) = " + result);
    }
}

Output

result (value of a as string) = 112120
result (value of b as string) = 2121210

Java Conversion Programs »






Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.