In Java, convert the hexadecimal values of 2, 8, 16, and 10.

Source: Internet
Author: User
Tags binary to decimal decimal to binary

Perform binary, octal, hexadecimal, and decimal conversion in Java

Convert decimal to hexadecimal:
Integer. tohexstring (int I)
Decimal to octal
Integer. tooctalstring (int I)
Convert decimal to binary
Integer. tobinarystring (int I)
Hexadecimal to decimal
Integer. valueof ("ffff", 16). tostring ()
Octal to decimal
Integer. valueof ("876", 8). tostring ()
Convert binary to decimal
Integer. valueof ("0101", 2). tostring ()

The Java. Lang. Integer class can be directly converted from 2, 8, and 16 to 10.
Integer. parseint (string S, int Radix)

Use the base number specified by the second parameter to resolve the string parameter to a signed integer.

Examples
Parseint ("0", 10) returns 0
Parseint ("473", 10) returns 473
Parseint ("-0", 10) returns 0
Parseint ("-FF", 16) returns-255
Parseint ("1100110", 2) returns 102
Parseint ("2147483647", 10) returns 2147483647
Parseint ("-2147483648", 10) returns-2147483648
Parseint ("2147483648", 10) throws a numberformatexception
Parseint ("99", 8) throws a numberformatexception
Parseint ("Kona", 10) throws a numberformatexception
Parseint ("Kona", 27) returns 411787.

How to Write (2, 8, 16) in hexadecimal conversion without Algorithms
Integer. tobinarystring
Integer. tooctalstring
Integer. tohexstring

Example 1
Java code

  1. Public class test {
  2. Public static void main (string ARGs []) {
  3. Int I = 100;
  4. String binstr = integer. tobinarystring (I );
  5. String otcstr = integer. tooctalstring (I );
  6. String hexstr = integer. tohexstring (I );
  7. System. Out. println (binstr );

Example 2
Java code

  1. Public class teststringformat {
  2. Public static void main (string [] ARGs ){
  3. If (ARGs. Length = 0 ){
  4. System. Out. println ("Usage: Java teststringformat <a number> ");
  5. System. Exit (0 );
  6. }
  7. Integer factor = integer. valueof (ARGs [0]);
  8. String S;
  9. S = string. Format ("% d", factor );
  10. System. Out. println (s );
  11. S = string. Format ("% x", factor );
  12. System. Out. println (s );
  13. S = string. Format ("% O", factor );
  14. System. Out. println (s );
  15. }
  16. }
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.