java.lang.Long toHexString(long i)
Description
The unsigned long value is the argument plus 264 if the argument is negative; otherwise, it is equal to the argument. This value is converted to a string of ASCII digits in hexadecimal (base 16) with no extra leading 0s.
The value of the argument can be recovered from the returned string s by calling Long.parseUnsignedLong(s, 16).
If the unsigned magnitude is zero, it is represented by a single zero character ‘0’ (‘u0030’); otherwise, the first character of the representation of the unsigned magnitude will not be the zero character.
Make a note that the toHexString() method of Long class is static thus it should be accessed statically which means the we would be calling this method in this format:
Long.toHexString(method args)
Non static method is usually called by just declaring method_name(argument) however in this case since the method is static, it should be called by appending the class name as suffix. We will be encountering a compilation problem if we call the java toHexString method non statically.
Method Syntax
public static int toHexString(long i)
Method Argument
Data Type | Parameter | Description |
---|---|---|
long | i | a long to be converted to a string. |
Method Returns
The toHexString(long i) method of Long class returns the string representation of the unsigned long value represented by the argument in hexadecimal (base 16).
Compatibility
Requires Java 1.0.2 and up
Java Long toHexString(long i) Example
Below is a simple java example on the usage of toHexString(long i) method of Long class.
package com.javatutorialhq.java.examples; /* * This example source code demonstrates the use of * toHexString(long i) method of Long class */ public class LongToHexStringExample { public static void main(String[] args) { // declare a new long value Long val = 88L; // get the toHexString() method result String result = Long.toHexString(val); // print the result System.out.println("Result:"+result); /* * This method will yield the same result as toString() method * if the radix use is 16 */ } }
Sample Output
Below is the sample output when you run the above example.