Home Java Wrapper-class Convert an Integer type object to a String object



Convert an Integer type object to a String object
Posted on: February 28, 2008 at 12:00 AM
In this section you will learn to convert the Integer type object to a String object using the Integer.toBinaryString() and Integer.toHexString() methods.

Convert an Integer type object to a String object

     

In this section you will learn to convert the Integer type object to a String object using the Integer.toBinaryString() and Integer.toHexString() methods.

Here is an example that provides the usage of the
Integer.toBinaryString() and Integer.toHexString() method in more detail. 

Create a class "NumberFormats" where an integer type object is converted into a string of binary type using the Integer.toBinaryString() and again to a hex type string using the Integer.toHexString() type method.

Here is the Code of the Example :

NumberFormats.java:

import java.util.*;
public class NumberFormats{
  public static void main(String argv[]){
  System.out.println(Integer.toBinaryString(4));
  System.out.println(Integer.toHexString(16));

  }
}

Here is the Output of the Example :

C:\roseindia>javac NumberFormats.java

C:\roseindia>java NumberFormats
100
10

C:\roseindia>

Related Tags for Convert an Integer type object to a String object:
cstringideclassormformbinaryobjectconvertiomethodsintegermethodformattypehexvinumberusingintthisidaiusagecreateforexamplewheretolearntailexamearbieildesnumberformatrtesectionpeinrmasmnttrsagejclesagemeintoobjprodetaildetailxsbinxaxampsatishallmpleaandarstrrtsausassriringthsthatgajepleplprndodsono


More Tutorials from this section

Ask Questions?    Discuss: Convert an Integer type object to a String object  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.