123ArticleOnline Logo
Welcome to 123ArticleOnline.com!
ALL >> Computer-Programming >> View Article

Different Ways To Reverse A String In Java

Profile Picture
By Author: springjava
Total Articles: 2
Comment this article
Facebook ShareTwitter ShareGoogle+ ShareTwitter Share

In this topic, we will learn about different ways to reverse a string in Java with examples.
different_ways_to_reverse_a_string_in_java

There are the following ways to reverse a String in Java:
• Using the String’s charAt() method
• Using the String’s toCharArray() method
• Using the String’s getBytes() method
• Using the StringBuilder’s reverse() method
• Using the StringBuffer’s reverse() method

Using the String’s charAt() method
We can reverse a String using the charAt() method of the String class. A String object is immutable and doesn’t have the in-built reverse() method. StringBuilder and StringBuffer classes have in-built reverse() methods.

Example
In this example, we will get each character of the String and add them to the font of the new String.

public class SpringJava{
public static void main (String[] args) {
String str= "springjava", nstr="";
char ch;
System.out.println("Original String: "+str);
for(int i=0; i= 0; i--)
System.out.print(charArr[i]);
...
... }
}
Output

avajgnirps
Using the String’s getBytes() method
We can reverse a String by using the getBytes() method in Java's String class.

Example
In this example, we will convert String to byte array to reverse String.

public class SpringJava {
public static void main(String[] args){
String input = "springjava";
//converting String to byte array
byte[] bytSArr = input.getBytes();
byte[] bytArr = new byte[bytSArr.length];
for (int i = 0; i < bytSArr.length; i++)
bytArr[i] = bytSArr[bytSArr.length - i - 1];
System.out.println(new String(bytArr));
}
}
Output

avajgnirps
Using the StringBuilder’s reverse() method
We can reverse a String by using the in-built reverse() method of the StringBuilder class in Java.

Example
In this example, we will take String and StringBuilder then append String to StringBuilder and apply the reverse() method of the StringBuilder to reverse String.

public class SpringJava {
public static void main(String[] args){
String input = "springjava";
StringBuilder sb = new StringBuilder();
//appending a string into StringBuilder
sb.append(input);
//reverse StringBuilder
sb.reverse();
//printing reversed String
System.out.println(sb);
}
}
Output

avajgnirps
Using the StringBuilder’s reverse() method
We can reverse String by using the in-built reverse() method of the StringBuffer class in Java.

Example
In this example, we will convert String to StringBuffer and then apply the reverse() method to reverse String in Java.

public class SpringJava {
public static void main(String[] args){
String str = "springjava";
//converting a String object to StringBuffer
StringBuffer sbr = new StringBuffer(str);
//to reverse that string
sbr.reverse();
System.out.println(sbr);
}
}
Output

avajgnirps
FAQ
Q1: How a string is reversed in Java?
Ans. The string class does have an in-built reverse() method but the StringBuffer class has a reverse() method. We can convert String to StringBuffer and then use the reverse() method to reverse a String in Java.
Q2: How do you reverse a word in Java?
Ans. Using the StringBuilder class's reverse() method, we can reverse a word in Java.

Conclusion
In this topic, we learned different ways to reverse String in Java

Total Views: 164Word Count: 554See All articles From Author

Add Comment

Computer Programming Articles

1. Agentic Ai Development Services: Unlocking The Future Of Smarter Automation
Author: Albert

2. Why The Best Data Science Institute In Bhopal Is The Gateway To Top It Jobs
Author: Rohan Rajput

3. Complete Php Tutorial: Master Core Php Concepts With Examples
Author: Tech Point

4. Framework7 Tutorial For Beginners – Create Powerful Hybrid Apps
Author: Tech Point

5. Why Spadegaming Is Dominating The Asian Igaming Market
Author: Alex

6. Why Express.js And Mongodb Are A Dynamic Duo For Node.js Development
Author: Andy

7. Discover The Best Data Science Institute In Bhopal For A Future-ready Career
Author: Rohan Rajput

8. Best Data Science Institute In Bhopal: Learn Ai, Ml & Analytics With Experts
Author: Rohan Rajput

9. Jstl Tutorial – Simplifying Jsp Development
Author: Tech Point

10. Easy Java I/o Tutorial For Beginners To Learn File Operations
Author: Tech Point

11. Ai Chatbot Development Vs. Traditional Chatbot Development
Author: Albert

12. Good Schools In Bhopal Offering Academics With All-round Growth
Author: Ronit Sharma

13. Top Data Science Academy In Bhopal
Author: Rohan Rajput

14. Premier Data Science Courses In Bhopal
Author: Rohan Rajput

15. Jsf Tutorial: Everything You Need To Know About Javaserver Faces
Author: Tech Point

Login To Account
Login Email:
Password:
Forgot Password?
New User?
Sign Up Newsletter
Email Address: