How to Convert an Integer to String in Java?

Last updated by Abhinav Rawat on Nov 7, 2024 at 11:33 AM
Contents

Java is one of the most preferred programming languages. Software developers or engineers preparing for coding interviews should make it a point to review some of the basics of Java as a part of their prep. In this article, we’ll look at how to convert int to string in java. This process can come in handy while solving problems at tech interviews.

String in Java is a collection of characters, and there are many operations, such as finding substring and concatenation, that can be performed on a string but not on an integer. Say we want to concatenate two integers or want to find out if an integer contains a specific digit or not. We can simply convert integer to string in Java to do this type of operation easily.

Different Methods to Convert an Integer to String in Java

There are many ways to convert integers to strings; let’s look at them one by one.

Method 1. Using toString() Method

The return type of to String() is String, and it is present in many Java classes.

It can be used in two ways:

  1. By the static function of the Integer class like Integer.toString(100)
  2. By using the regular version of the Integer class’s object. We need first to convert int to Integer because this method cannot be used with the primitive type int. We can use a simple assignment using the = operator.

Here’s the code:

public class IK{

public static void main(String[] args){

Integer n = new Integer(100); // Passing int to constructor.

System.out.println(“Before conversion: ” + n);

// Object res to store the result.

String result = n.toString();

System.out.println(“After conversion: ” + result);

}

}

Output: 

Before conversion: 100
After conversion: 100

Method 2: Using String.valueOf()

This method is used to return the string representation of passed Integer (int or Integer).

Example: String.valueOf(Integer(100));

Here is how it’s implemented:

public class IK{

public static void main(String[] args){

Integer n = new Integer(100); // Passing int to constructor.

System.out.println(“Before conversion: ” + n);

// Object res to store the result.

String result = String.valueOf(n);

System.out.println(“After conversion: ” + result );

}

}

 

Output: 

Before conversion: 100
After conversion: 100

Method 3: Using StringBuilder

StringBuilder class can be used to convert Integer to the string; this class builds a string by calling the append() method in it. We will create an object of StringBuilder and call method append() by passing out Integer. Then we can use the toString() method to get the answer in the String object.

The following is the code:

public class IK{

public static void main(String[] args){

Integer n = new Integer(100); // Passing int to constructor.

System.out.println(“Before conversion: ” + n);

// Creating StringBuilder object s

StringBuilder s = new StringBuilder();

// Passing Integer to append() method

s.append(n);

// Object res to store the result.

String res = s.toString();

System.out.println(“After conversion: ” + res);

}

}

 

Output: 

Before conversion: 100
After conversion: 100

Method 4 (Indirect Way): Using String.format()

Syntax of this method is String.format(“%d”, int). Here, the first argument is any string containing %d.

%d stands for integer, which means the passed parameter is integer here. The second argument is the integer we want to convert. This method will return the String object containing a string representation of our number.

 

Here’s the code:

public class IK{

public static void main(String[] args){

Integer n = new Integer(100); // Passing int to constructor.

System.out.println(“Before conversion: ” + n);

// Object res to store the result.

String res = String.format(“%d”, n);

System.out.println(“After conversion: ” + res);

}

}

Output: 

Before conversion: 100
After conversion: 100

Method 5 (Indirect Way): Using Concatenation With Empty String

In Java, we can simply concatenate an Integer to an empty string to convert int to string. Doing so will give a String representation of our Integer.

Here’s how:

public class IK{

public static void main(String[] args){

Integer n = new Integer(100); // Passing int to constructor.

System.out.println(“Before conversion: ” + n);

// Object res to store the result.

String res = “” + n;

System.out.println(“After conversion: ” + res);

}

}

Output: 

Before conversion: 100
After conversion: 100

Interview Questions on Converting Integer to String in Java

Here are a few sample interview questions related to converting an integer to string in Java:

  1. How to convert string to int in Java?
  2. How to convert int to string in Java in the easiest way possible?
  3. Why is string immutable in Java?
  4. How to convert char to integer in Java?
  5. How to convert integer to string in Java using StringBuilder?
  6. How to convert char array to string in Java?
  7. How to convert double to string in Java?

Ace Your Next Tech Interview With Interview Kickstart!

If you’re looking for guidance and help to nail your next technical interview, sign up for our free webinar.

As pioneers in the field of technical interview prep, we have trained thousands of software engineers to crack the toughest coding interviews and land their dream jobs at Google, Facebook, Apple, Netflix, Amazon, and other Tier-1 tech companies.

Join our webinar to learn more!

FAQs: Convert an Integer to String in Java

Q1. What is the simplest way to convert an integer to a string in Java?

Use Integer.toString() or String.valueOf(int) for simple conversions.

Q2. Is it possbile to convert an integer to a string using StringBuilder in Java?

Yes, you can convert int to string by appending the integer to StringBuilder and call toString() on it.

Q3. How does concatenating with an empty string convert an int to string in Java?

Using “” + int concatenates an integer with an empty string, creating a string.

Q4. What is the role of String.format() in converting int to string in Java?

You can use String.format(“%d”, int) to format and convert an integer to string in Java.

Q5. Which is the fastest method to convert integer to string?

Integer.toString(int) is generally the fastest method for directly converting int to string in Java.

Recommended Reading:

Last updated on: November 7, 2024
Author
Abhinav Rawat
Product Manager @ Interview Kickstart | Ex-upGrad | BITS Pilani. Working with hiring managers from top companies like Meta, Apple, Google, Amazon etc to build structured interview process BootCamps across domains
Register for our webinar

Uplevel your career with AI/ML/GenAI

Loading_icon
Loading...
1 Enter details
2 Select webinar slot
By sharing your contact details, you agree to our privacy policy.

Select a Date

Time slots

Time Zone:

Spring vs Spring Boot

Spring vs Spring Boot: Simplifying Java Application Development

Reinforcement Learning: Teaching Machines to Make Optimal Decisions

Reinforcement Learning: Teaching Machines to Make Optimal Decisions

Product Marketing vs Product Management

Product Marketing vs Product Management

Java Scanner reset()

The upper() Function in Python

Insertion Sort Algorithm

Ready to Enroll?

Get your enrollment process started by registering for a Pre-enrollment Webinar with one of our Founders.

Next webinar starts in

00
DAYS
:
00
HR
:
00
MINS
:
00
SEC

Register for our webinar

How to Nail your next Technical Interview

Loading_icon
Loading...
1 Enter details
2 Select slot
By sharing your contact details, you agree to our privacy policy.

Select a Date

Time slots

Time Zone:

Get tech interview-ready to navigate a tough job market

Best suitable for: Software Professionals with 5+ years of exprerience
Register for our FREE Webinar

Next webinar starts in

00
DAYS
:
00
HR
:
00
MINS
:
00
SEC