Integer.reverseBytes(int i) has the following syntax.
public static int reverseBytes(int i)
In the following code shows how to use Integer.reverseBytes(int i) method.
public class Main { public static void main(String args[]) { int n = 170; // 10101010 System.out.println(Integer.reverseBytes(n)); } }
The code above generates the following result.