How to get 2's complement of a binary number in Java programmatically
How to calculate the 2's Complement of a Hex number in Android/Java. For Example : String x = 10011010; 1's complement of x = 01100101; 2's complement is 01100110; How I can pro-grammatically achieve in Java? I had tried the following code to convert the binary to its 1's compliment: public String complementFunction(String bin) { String ones = ""; for (int i = 0; i < bin.length(); i++) { ones += flip(bin.charAt(i)); } return ones; } // Returns '0' for '1' and '1' for '0' public char flip(char c) { return (c == '0') ? '1' : '0'; } But I'm not able to get its two's complement. Thanks for your