Long.valueOf(String s, int radix) has the following syntax.
public static Long valueOf(String s, int radix) throws NumberFormatException
In the following code shows how to use Long.valueOf(String s, int radix) method.
public class Main { public static void main(String[] args) { String str = "123456789098765"; System.out.println("Value = " + Long.valueOf(str, 10)); } }
The code above generates the following result.