
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
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.
There are many ways to convert integers to strings; let’s look at them one by one.
The return type of to String() is String, and it is present in many Java classes.
It can be used in two ways:
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
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
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
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
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
Here are a few sample interview questions related to converting an integer to string in Java:
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!
Use Integer.toString() or String.valueOf(int) for simple conversions.
Yes, you can convert int to string by appending the integer to StringBuilder and call toString() on it.
Using “” + int concatenates an integer with an empty string, creating a string.
You can use String.format(“%d”, int) to format and convert an integer to string in Java.
Integer.toString(int) is generally the fastest method for directly converting int to string in Java.
Recommended Reading:
Time Zone:
Get your enrollment process started by registering for a Pre-enrollment Webinar with one of our Founders.
The 11 Neural “Power Patterns” For Solving Any FAANG Interview Problem 12.5X Faster Than 99.8% OF Applicants
The 2 “Magic Questions” That Reveal Whether You’re Good Enough To Receive A Lucrative Big Tech Offer
The “Instant Income Multiplier” That 2-3X’s Your Current Tech Salary
The 11 Neural “Power Patterns” For Solving Any FAANG Interview Problem 12.5X Faster Than 99.8% OF Applicants
The 2 “Magic Questions” That Reveal Whether You’re Good Enough To Receive A Lucrative Big Tech Offer
The “Instant Income Multiplier” That 2-3X’s Your Current Tech Salary
Just drop your name and email so we can send your Power Patterns PDF straight to your inbox. No Spam!
By sharing your contact details, you agree to our privacy policy.
Time Zone: Asia/Dhaka
We’ve sent the Power Patterns PDF to your inbox — it should arrive in the next 30 seconds.
📩 Can’t find it? Check your promotions or spam folder — and mark us as safe so you don’t miss future insights.
We’re hosting a private session where FAANG insiders walk through how they actually use these Power Patterns to crack interviews — and what sets top performers apart.
🎯 If you liked the PDF, you’ll love what we’re sharing next.
Time Zone: