ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Java67 - Java Program Example Tutorial Blog
Java Tutorial Example program tips homework assignment solution, interview question answers

eclipse debugging unix linux sql xml blog

SATURDAY, DECEMBER 8, 2012


How to reverse String in Java with or without StringBuffer
Example
Reverse String in Java
There are many ways to reverse String in Java. You can use rich Java API to quickly reverse contents of any String
object. Java library provides StringBuffer and StringBuilder class with reverse() method which can be
used to reverse String in Java. Since converting between String and StringBuffer or StringBuilder is very
easy it's the most easy way available to reverse String in Java. At the same time Writing Java program to reverse
String in Java without StringBuffer is one of the popular Java String interview question, which requires you to
reverse String by applying logic and by not using API methods. Since reverse is a recursive job, you can use
recursion as well as loop to reverse String in Java. In this Java tutorial I have shown How to reverse String using
StringBuffer, StringBuilder and using pure loop with logic. You can also check How to reverse String with
recursion in Java, if you want to see recursive code. let's see complete Java program for this beautiful Java
programming exercise.

Java program to reverse String in Java




         Here is my complete code program to reverse any String in Java. In main method we have first
used StringBuffer andStringBuilder to reverse contents of String and then we wrote our own logic to reverse
String. This usestoCharArray() method of String class which return character array of String. By looping through
character array and appending it into empty String we can get reversed String in Java, as shown in following
example.

/**
 *
 * Java program to reverse String in Java. There are multiple ways to reverse
 * String in Java, you can either take help of standard Java API StringBuffer
 * to reverse String in Java. StringBuffer has a reverse() method which return
StringBuffer
 * with reversed contents. On the other hand you can also reverse it by applying your
 * own logic, if asked to reverse String without using StringBuffer in Java. By the
way
 * you can also use StringBuilder to reverse String in Java. StringBuilder is non
thread-safe
 * version of StringBuffer and provides similar API. You can use StringBuilder's
reverse()
 * method to reverse content and then convert it back to String
 *
 * @author http://java67.blogspot.com
 */
public class StringReverseExample {


     public static void main(String args[]) {
//quick wasy to reverse String in Java - Use StringBuffer
        String word = "HelloWorld";
        String reverse = new StringBuffer(word).reverse().toString();
        System.out.printf(" original String : %s , reversed String %s                         %n", word,
reverse);

        //another quick to reverse String in Java - use StringBuilder
        word = "WakeUp";
        reverse = new StringBuilder(word).reverse().toString();
        System.out.printf(" original String : %s , reversed String %s %n", word,
reverse);

          //one way to reverse String without using StringBuffer or StringBuilder is
writing
        //own utility method
        word = "Band";
        reverse = reverse(word);
        System.out.printf(" original String : %s , reversed String %s %n", word,
reverse);
    }


     public static String reverse(String source){
         if(source == null || source.isEmpty()){
             return source;
         }
         String reverse = "";
         for(int i = source.length() -1; i>=0; i--){
             reverse = reverse + source.charAt(i);
         }

          return reverse;
     }

}

Output:
original String : HelloWorld , reversed String dlroWolleH
original String : WakeUp , reversed String pUekaW
original String : Band , reversed String dnaB


That's all on How to reverse String in Java with and without StringBuffer and StringBuilder. Though being a
Java programmer I prefer to use library and suggest any one to use StringBuffer or StringBuilder to reverse
String for any production use. Though its also a good programming exercise and you should practice it before going
for any Java programming interview.

Other Java tutorials you may like
String matches examples in Java
Difference between String and StringBuffer in Java
Best way to convert numbers to String in Java
Difference between == and equals method in Java
How to create Enum from String in Java
How to use contains and indexOf method in String Java
You might like:
How to format Date in Java - SimpleDateFormat Example | Java67 - Java Program Example Tutorial Blog




JDOM Example : Reading and Parsing XML with SAX parser in Java | Java67 - Java Program Example Tutorial
Blog




10 points about Object in Java and Object oriented programming language | Java67 - Java Program Example
Tutorial Blog




Java Interview Questions for 2 to 3 years experience - Answered | Java67 - Java Program Example Tutorial Blog
[?]
Posted by Javin Paul at 3:04 AM
Email ThisBlogThis!Share to TwitterShare to Facebook
Labels: coding, core java, core java interview question answer, programming


1 comment:
             1.
                       RakeshJanuary 8, 2013 at 11:09 PM

                       Indeed it's commonly asked to write a Java program to reverse String in Java
                       without using reverse function and it's not EASY. first of all reverse can have
                       different meaning e.g. reverse word by word or reverse each character,
                       preserving whitespace etc. They may ask you to use recursion to write reverse
                       String function instead of using for loop. Best way is to prepare well with all
                       kinds of String related question.
                       Reply
                                               Newer PostOlder PostHome
Subscribe to: Post Comments (Atom)

                                                                  2
JAVA67 HEADLINE ANIMATOR




                                                 ↑ Grab this Headline Animator

RECENT POSTS WIDGET

FOLLOWERS

BLOG ARCHIVE
â–º 2013 (9)
    â–¼ 2012 (137)
o   â–¼ December (26)
   How Constructor Chaining works in Java - Example
   Producer Consumer Problem with Wait and Notify Exa...
   What is public private protected and package or de...
   10 points about Object in Java and Object oriented...
   Difference between ArrayList vs LinkedList in Java...
   How to display date in multiple timezone in Java w...
   How to remove element from Array in Java with Exam...
   How to convert java.sql.Date to java.util.Date in ...
   JDBC Interview questions answers in Java - 2 to 4 ...
   How to check leap year in Java - program example
   Unix command to find IP address from hostname - Li...
   How to run Java program from jar file in command l...
   Difference between RuntimeException and checked Ex...
   Difference between GenericServlet vs HttpServlet i...
   Bubble sort in Java - program to sort integer arra...
   Difference between Array vs ArrayList in Java
   How to remove all white space from String in Java ...
   trustStore vs keyStore in Java SSL
   How to convert String from lowercase to uppercase ...
   NoClassDefFoundError vs ClassNotFoundExcepiton in ...
   Main method Interview Questions in Java - FAQ
   How to read user input from Console in Java using ...
   How to reverse String in Java with or without Stri...
   Difference between Error vs Exception in Java - In...
   How to create and initialize List or ArrayList in ...
   What is difference between Thread vs Process in Ja...
o   â–º November (8)
o   â–º October (28)
o   â–º September (26)
o   â–º August (42)
o   â–º July (7)

    Jobs
    Senior Software Engineer
    Bangalore, India
    SuccessFactors
    $1,000 Referral Reward
Senior Software Engineer UI
Bangalore, India
SuccessFactors
$1,000 Referral Reward
Software Engineering Intern
Bangalore, India
SuccessFactors
$1,000 Referral Reward
PHP Web Developer / Programmer
Las Vegas, NV
Doppler Internet
Manager Resourcing
Sunnyvale, CA
TruGlobal
POST A JOB >
                                        POWERED BY JOBTHREAD




                                 Simple template. Powered by Blogger.

More Related Content

What's hot (20)

CoffeeScript By Example
CoffeeScript By ExampleCoffeeScript By Example
CoffeeScript By Example
Christopher Bartling
Ìý
Viva file
Viva fileViva file
Viva file
anupamasingh87
Ìý
What I Love About Ruby
What I Love About RubyWhat I Love About Ruby
What I Love About Ruby
Keith Bennett
Ìý
Beyond the Style Guides
Beyond the Style GuidesBeyond the Style Guides
Beyond the Style Guides
Mosky Liu
Ìý
Java scriptforjavadev part2a
Java scriptforjavadev part2aJava scriptforjavadev part2a
Java scriptforjavadev part2a
Makarand Bhatambarekar
Ìý
JRuby @ Boulder Ruby
JRuby @ Boulder RubyJRuby @ Boulder Ruby
JRuby @ Boulder Ruby
Nick Sieger
Ìý
Scala Matsuri 2016: Japanese Text Mining with Scala and Spark
Scala Matsuri 2016: Japanese Text Mining with Scala and SparkScala Matsuri 2016: Japanese Text Mining with Scala and Spark
Scala Matsuri 2016: Japanese Text Mining with Scala and Spark
Eduardo Gonzalez
Ìý
Java inheritance
Java inheritanceJava inheritance
Java inheritance
Hamid Ghorbani
Ìý
Xtend - better java with -less- noise
Xtend - better java with -less- noiseXtend - better java with -less- noise
Xtend - better java with -less- noise
Neeraj Bhusare
Ìý
Enhancing VAEs for collaborative filtering : flexible priors & gating mechanisms
Enhancing VAEs for collaborative filtering : flexible priors & gating mechanismsEnhancing VAEs for collaborative filtering : flexible priors & gating mechanisms
Enhancing VAEs for collaborative filtering : flexible priors & gating mechanisms
seungwoo kim
Ìý
Java interview questions 1
Java interview questions 1Java interview questions 1
Java interview questions 1
Sherihan Anver
Ìý
Java 7 Language Enhancement
Java 7 Language EnhancementJava 7 Language Enhancement
Java 7 Language Enhancement
muthusvm
Ìý
From Java 6 to Java 7 reference
From Java 6 to Java 7 referenceFrom Java 6 to Java 7 reference
From Java 6 to Java 7 reference
Giacomo Veneri
Ìý
String handling(string buffer class)
String handling(string buffer class)String handling(string buffer class)
String handling(string buffer class)
Ravi Kant Sahu
Ìý
Core java
Core javaCore java
Core java
kasaragaddaslide
Ìý
OCA Java SE 8 Exam Chapter 1 Java Building Blocks
OCA Java SE 8 Exam Chapter 1 Java Building BlocksOCA Java SE 8 Exam Chapter 1 Java Building Blocks
OCA Java SE 8 Exam Chapter 1 Java Building Blocks
İbrahim Kürce
Ìý
Modern Java Concurrency
Modern Java ConcurrencyModern Java Concurrency
Modern Java Concurrency
Ben Evans
Ìý
Java Faqs useful for freshers and experienced
Java Faqs useful for freshers and experiencedJava Faqs useful for freshers and experienced
Java Faqs useful for freshers and experienced
yearninginjava
Ìý
Code Generation idioms with Xtend
Code Generation idioms with XtendCode Generation idioms with Xtend
Code Generation idioms with Xtend
Holger Schill
Ìý
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
Nick Sieger
Ìý
What I Love About Ruby
What I Love About RubyWhat I Love About Ruby
What I Love About Ruby
Keith Bennett
Ìý
Beyond the Style Guides
Beyond the Style GuidesBeyond the Style Guides
Beyond the Style Guides
Mosky Liu
Ìý
JRuby @ Boulder Ruby
JRuby @ Boulder RubyJRuby @ Boulder Ruby
JRuby @ Boulder Ruby
Nick Sieger
Ìý
Scala Matsuri 2016: Japanese Text Mining with Scala and Spark
Scala Matsuri 2016: Japanese Text Mining with Scala and SparkScala Matsuri 2016: Japanese Text Mining with Scala and Spark
Scala Matsuri 2016: Japanese Text Mining with Scala and Spark
Eduardo Gonzalez
Ìý
Java inheritance
Java inheritanceJava inheritance
Java inheritance
Hamid Ghorbani
Ìý
Xtend - better java with -less- noise
Xtend - better java with -less- noiseXtend - better java with -less- noise
Xtend - better java with -less- noise
Neeraj Bhusare
Ìý
Enhancing VAEs for collaborative filtering : flexible priors & gating mechanisms
Enhancing VAEs for collaborative filtering : flexible priors & gating mechanismsEnhancing VAEs for collaborative filtering : flexible priors & gating mechanisms
Enhancing VAEs for collaborative filtering : flexible priors & gating mechanisms
seungwoo kim
Ìý
Java interview questions 1
Java interview questions 1Java interview questions 1
Java interview questions 1
Sherihan Anver
Ìý
Java 7 Language Enhancement
Java 7 Language EnhancementJava 7 Language Enhancement
Java 7 Language Enhancement
muthusvm
Ìý
From Java 6 to Java 7 reference
From Java 6 to Java 7 referenceFrom Java 6 to Java 7 reference
From Java 6 to Java 7 reference
Giacomo Veneri
Ìý
String handling(string buffer class)
String handling(string buffer class)String handling(string buffer class)
String handling(string buffer class)
Ravi Kant Sahu
Ìý
OCA Java SE 8 Exam Chapter 1 Java Building Blocks
OCA Java SE 8 Exam Chapter 1 Java Building BlocksOCA Java SE 8 Exam Chapter 1 Java Building Blocks
OCA Java SE 8 Exam Chapter 1 Java Building Blocks
İbrahim Kürce
Ìý
Modern Java Concurrency
Modern Java ConcurrencyModern Java Concurrency
Modern Java Concurrency
Ben Evans
Ìý
Java Faqs useful for freshers and experienced
Java Faqs useful for freshers and experiencedJava Faqs useful for freshers and experienced
Java Faqs useful for freshers and experienced
yearninginjava
Ìý
Code Generation idioms with Xtend
Code Generation idioms with XtendCode Generation idioms with Xtend
Code Generation idioms with Xtend
Holger Schill
Ìý
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
Nick Sieger
Ìý

Similar to Java67 (20)

Java Interview Questions PDF By ScholarHat
Java Interview Questions PDF By ScholarHatJava Interview Questions PDF By ScholarHat
Java Interview Questions PDF By ScholarHat
Scholarhat
Ìý
Scala the-good-parts
Scala the-good-partsScala the-good-parts
Scala the-good-parts
Fuqiang Wang
Ìý
Interview-QA.pptx
Interview-QA.pptxInterview-QA.pptx
Interview-QA.pptx
SharanabasavaSharanu1
Ìý
Basics of Java
Basics of JavaBasics of Java
Basics of Java
Sherihan Anver
Ìý
Java Interview Questions for 10+ Year Experienced PDF By ScholarHat
Java Interview Questions for 10+ Year Experienced PDF By ScholarHatJava Interview Questions for 10+ Year Experienced PDF By ScholarHat
Java Interview Questions for 10+ Year Experienced PDF By ScholarHat
Scholarhat
Ìý
JAVA AND OOPS CONCEPTS.pptx helpful for engineering
JAVA AND OOPS CONCEPTS.pptx helpful for engineeringJAVA AND OOPS CONCEPTS.pptx helpful for engineering
JAVA AND OOPS CONCEPTS.pptx helpful for engineering
PriyanshuGupta101797
Ìý
Java interview questions and answers for cognizant By Data Council Pune
Java interview questions and answers for cognizant By Data Council PuneJava interview questions and answers for cognizant By Data Council Pune
Java interview questions and answers for cognizant By Data Council Pune
Pankaj kshirsagar
Ìý
Functional programming with Java 8
Functional programming with Java 8Functional programming with Java 8
Functional programming with Java 8
Talha Ocakçı
Ìý
Java interview questions 2
Java interview questions 2Java interview questions 2
Java interview questions 2
Sherihan Anver
Ìý
Introduction of Java 8 with emphasis on Lambda Expressions and Streams
Introduction of Java 8 with emphasis on Lambda Expressions and StreamsIntroduction of Java 8 with emphasis on Lambda Expressions and Streams
Introduction of Java 8 with emphasis on Lambda Expressions and Streams
Emiel Paasschens
Ìý
Introduction to java
Introduction to javaIntroduction to java
Introduction to java
Sujit Majety
Ìý
Core Java Interview Questions PDF By ScholarHat
Core Java Interview Questions PDF By ScholarHatCore Java Interview Questions PDF By ScholarHat
Core Java Interview Questions PDF By ScholarHat
Scholarhat
Ìý
13 java beans
13 java beans13 java beans
13 java beans
snopteck
Ìý
OOPS JavaScript Interview Questions PDF By ScholarHat
OOPS JavaScript Interview Questions PDF By ScholarHatOOPS JavaScript Interview Questions PDF By ScholarHat
OOPS JavaScript Interview Questions PDF By ScholarHat
Scholarhat
Ìý
Basics java programing
Basics java programingBasics java programing
Basics java programing
Darshan Gohel
Ìý
Introduction to es6
Introduction to es6Introduction to es6
Introduction to es6
NexThoughts Technologies
Ìý
Java Simplified: Understanding Programming Basics
Java Simplified: Understanding Programming BasicsJava Simplified: Understanding Programming Basics
Java Simplified: Understanding Programming Basics
Akshaj Vadakkath Joshy
Ìý
Java programing language unit 1 introduction
Java programing language unit 1 introductionJava programing language unit 1 introduction
Java programing language unit 1 introduction
chnrketan
Ìý
Top 371 java fa qs useful for freshers and experienced
Top 371 java fa qs useful for freshers and experiencedTop 371 java fa qs useful for freshers and experienced
Top 371 java fa qs useful for freshers and experienced
Gaurav Maheshwari
Ìý
Encapsulation
EncapsulationEncapsulation
Encapsulation
harikrishna boini
Ìý
Java Interview Questions PDF By ScholarHat
Java Interview Questions PDF By ScholarHatJava Interview Questions PDF By ScholarHat
Java Interview Questions PDF By ScholarHat
Scholarhat
Ìý
Scala the-good-parts
Scala the-good-partsScala the-good-parts
Scala the-good-parts
Fuqiang Wang
Ìý
Java Interview Questions for 10+ Year Experienced PDF By ScholarHat
Java Interview Questions for 10+ Year Experienced PDF By ScholarHatJava Interview Questions for 10+ Year Experienced PDF By ScholarHat
Java Interview Questions for 10+ Year Experienced PDF By ScholarHat
Scholarhat
Ìý
JAVA AND OOPS CONCEPTS.pptx helpful for engineering
JAVA AND OOPS CONCEPTS.pptx helpful for engineeringJAVA AND OOPS CONCEPTS.pptx helpful for engineering
JAVA AND OOPS CONCEPTS.pptx helpful for engineering
PriyanshuGupta101797
Ìý
Java interview questions and answers for cognizant By Data Council Pune
Java interview questions and answers for cognizant By Data Council PuneJava interview questions and answers for cognizant By Data Council Pune
Java interview questions and answers for cognizant By Data Council Pune
Pankaj kshirsagar
Ìý
Functional programming with Java 8
Functional programming with Java 8Functional programming with Java 8
Functional programming with Java 8
Talha Ocakçı
Ìý
Java interview questions 2
Java interview questions 2Java interview questions 2
Java interview questions 2
Sherihan Anver
Ìý
Introduction of Java 8 with emphasis on Lambda Expressions and Streams
Introduction of Java 8 with emphasis on Lambda Expressions and StreamsIntroduction of Java 8 with emphasis on Lambda Expressions and Streams
Introduction of Java 8 with emphasis on Lambda Expressions and Streams
Emiel Paasschens
Ìý
Introduction to java
Introduction to javaIntroduction to java
Introduction to java
Sujit Majety
Ìý
Core Java Interview Questions PDF By ScholarHat
Core Java Interview Questions PDF By ScholarHatCore Java Interview Questions PDF By ScholarHat
Core Java Interview Questions PDF By ScholarHat
Scholarhat
Ìý
13 java beans
13 java beans13 java beans
13 java beans
snopteck
Ìý
OOPS JavaScript Interview Questions PDF By ScholarHat
OOPS JavaScript Interview Questions PDF By ScholarHatOOPS JavaScript Interview Questions PDF By ScholarHat
OOPS JavaScript Interview Questions PDF By ScholarHat
Scholarhat
Ìý
Basics java programing
Basics java programingBasics java programing
Basics java programing
Darshan Gohel
Ìý
Java Simplified: Understanding Programming Basics
Java Simplified: Understanding Programming BasicsJava Simplified: Understanding Programming Basics
Java Simplified: Understanding Programming Basics
Akshaj Vadakkath Joshy
Ìý
Java programing language unit 1 introduction
Java programing language unit 1 introductionJava programing language unit 1 introduction
Java programing language unit 1 introduction
chnrketan
Ìý
Top 371 java fa qs useful for freshers and experienced
Top 371 java fa qs useful for freshers and experiencedTop 371 java fa qs useful for freshers and experienced
Top 371 java fa qs useful for freshers and experienced
Gaurav Maheshwari
Ìý

Recently uploaded (20)

Key Frameworks in Systematic Reviews - Dr Reginald Quansah
Key Frameworks in Systematic Reviews - Dr Reginald QuansahKey Frameworks in Systematic Reviews - Dr Reginald Quansah
Key Frameworks in Systematic Reviews - Dr Reginald Quansah
Systematic Reviews Network (SRN)
Ìý
How to Configure Outgoing and Incoming mail servers in Odoo 18
How to Configure Outgoing and Incoming mail servers in Odoo 18How to Configure Outgoing and Incoming mail servers in Odoo 18
How to Configure Outgoing and Incoming mail servers in Odoo 18
Celine George
Ìý
U.S. Department of Education certification
U.S. Department of Education certificationU.S. Department of Education certification
U.S. Department of Education certification
Mebane Rash
Ìý
Early 20th Century Modern Art: Movements and Artists
Early 20th Century Modern Art: Movements and ArtistsEarly 20th Century Modern Art: Movements and Artists
Early 20th Century Modern Art: Movements and Artists
Damian T. Gordon
Ìý
20250402 ACCA TeamScienceAIEra 20250402 v10.pptx
20250402 ACCA TeamScienceAIEra 20250402 v10.pptx20250402 ACCA TeamScienceAIEra 20250402 v10.pptx
20250402 ACCA TeamScienceAIEra 20250402 v10.pptx
home
Ìý
General Quiz at Maharaja Agrasen College | Amlan Sarkar | Prelims with Answer...
General Quiz at Maharaja Agrasen College | Amlan Sarkar | Prelims with Answer...General Quiz at Maharaja Agrasen College | Amlan Sarkar | Prelims with Answer...
General Quiz at Maharaja Agrasen College | Amlan Sarkar | Prelims with Answer...
Amlan Sarkar
Ìý
How to Setup Company Data in Odoo 17 Accounting App
How to Setup Company Data in Odoo 17 Accounting AppHow to Setup Company Data in Odoo 17 Accounting App
How to Setup Company Data in Odoo 17 Accounting App
Celine George
Ìý
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VIAnti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Samruddhi Khonde
Ìý
Introduction to Systematic Reviews - Prof Ejaz Khan
Introduction to Systematic Reviews - Prof Ejaz KhanIntroduction to Systematic Reviews - Prof Ejaz Khan
Introduction to Systematic Reviews - Prof Ejaz Khan
Systematic Reviews Network (SRN)
Ìý
ANTIVIRAL agent by Mrs. Manjushri Dabhade
ANTIVIRAL agent by Mrs. Manjushri DabhadeANTIVIRAL agent by Mrs. Manjushri Dabhade
ANTIVIRAL agent by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
Ìý
STOMACH Gross Anatomy & Clinical Anatomy.pptx
STOMACH Gross Anatomy & Clinical Anatomy.pptxSTOMACH Gross Anatomy & Clinical Anatomy.pptx
STOMACH Gross Anatomy & Clinical Anatomy.pptx
Sid Roy
Ìý
compiler design BCS613C question bank 2022 scheme
compiler design BCS613C question bank 2022 schemecompiler design BCS613C question bank 2022 scheme
compiler design BCS613C question bank 2022 scheme
Suvarna Hiremath
Ìý
Karin Clavel - Collection Wall: Inspiring connection and collaboration
Karin Clavel - Collection Wall: Inspiring connection and collaborationKarin Clavel - Collection Wall: Inspiring connection and collaboration
Karin Clavel - Collection Wall: Inspiring connection and collaboration
voginip
Ìý
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study MaterialPass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Jenny408767
Ìý
MIPLM subject matter expert Dr Alihan Kaya
MIPLM subject matter expert Dr Alihan KayaMIPLM subject matter expert Dr Alihan Kaya
MIPLM subject matter expert Dr Alihan Kaya
MIPLM
Ìý
Antifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri DabhadeAntifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
Ìý
MIPLM subject matter expert Sascha Kamhuber
MIPLM subject matter expert Sascha KamhuberMIPLM subject matter expert Sascha Kamhuber
MIPLM subject matter expert Sascha Kamhuber
MIPLM
Ìý
MIPLM subject matter expert Nicos Raftis
MIPLM subject matter expert Nicos RaftisMIPLM subject matter expert Nicos Raftis
MIPLM subject matter expert Nicos Raftis
MIPLM
Ìý
Sulfonamides by Mrs. Manjushri P. Dabhade
Sulfonamides by Mrs. Manjushri P. DabhadeSulfonamides by Mrs. Manjushri P. Dabhade
Sulfonamides by Mrs. Manjushri P. Dabhade
Dabhade madam Dabhade
Ìý
Design approaches and ethical challenges in Artificial Intelligence tools for...
Design approaches and ethical challenges in Artificial Intelligence tools for...Design approaches and ethical challenges in Artificial Intelligence tools for...
Design approaches and ethical challenges in Artificial Intelligence tools for...
Yannis
Ìý
Key Frameworks in Systematic Reviews - Dr Reginald Quansah
Key Frameworks in Systematic Reviews - Dr Reginald QuansahKey Frameworks in Systematic Reviews - Dr Reginald Quansah
Key Frameworks in Systematic Reviews - Dr Reginald Quansah
Systematic Reviews Network (SRN)
Ìý
How to Configure Outgoing and Incoming mail servers in Odoo 18
How to Configure Outgoing and Incoming mail servers in Odoo 18How to Configure Outgoing and Incoming mail servers in Odoo 18
How to Configure Outgoing and Incoming mail servers in Odoo 18
Celine George
Ìý
U.S. Department of Education certification
U.S. Department of Education certificationU.S. Department of Education certification
U.S. Department of Education certification
Mebane Rash
Ìý
Early 20th Century Modern Art: Movements and Artists
Early 20th Century Modern Art: Movements and ArtistsEarly 20th Century Modern Art: Movements and Artists
Early 20th Century Modern Art: Movements and Artists
Damian T. Gordon
Ìý
20250402 ACCA TeamScienceAIEra 20250402 v10.pptx
20250402 ACCA TeamScienceAIEra 20250402 v10.pptx20250402 ACCA TeamScienceAIEra 20250402 v10.pptx
20250402 ACCA TeamScienceAIEra 20250402 v10.pptx
home
Ìý
General Quiz at Maharaja Agrasen College | Amlan Sarkar | Prelims with Answer...
General Quiz at Maharaja Agrasen College | Amlan Sarkar | Prelims with Answer...General Quiz at Maharaja Agrasen College | Amlan Sarkar | Prelims with Answer...
General Quiz at Maharaja Agrasen College | Amlan Sarkar | Prelims with Answer...
Amlan Sarkar
Ìý
How to Setup Company Data in Odoo 17 Accounting App
How to Setup Company Data in Odoo 17 Accounting AppHow to Setup Company Data in Odoo 17 Accounting App
How to Setup Company Data in Odoo 17 Accounting App
Celine George
Ìý
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VIAnti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Samruddhi Khonde
Ìý
ANTIVIRAL agent by Mrs. Manjushri Dabhade
ANTIVIRAL agent by Mrs. Manjushri DabhadeANTIVIRAL agent by Mrs. Manjushri Dabhade
ANTIVIRAL agent by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
Ìý
STOMACH Gross Anatomy & Clinical Anatomy.pptx
STOMACH Gross Anatomy & Clinical Anatomy.pptxSTOMACH Gross Anatomy & Clinical Anatomy.pptx
STOMACH Gross Anatomy & Clinical Anatomy.pptx
Sid Roy
Ìý
compiler design BCS613C question bank 2022 scheme
compiler design BCS613C question bank 2022 schemecompiler design BCS613C question bank 2022 scheme
compiler design BCS613C question bank 2022 scheme
Suvarna Hiremath
Ìý
Karin Clavel - Collection Wall: Inspiring connection and collaboration
Karin Clavel - Collection Wall: Inspiring connection and collaborationKarin Clavel - Collection Wall: Inspiring connection and collaboration
Karin Clavel - Collection Wall: Inspiring connection and collaboration
voginip
Ìý
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study MaterialPass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Jenny408767
Ìý
MIPLM subject matter expert Dr Alihan Kaya
MIPLM subject matter expert Dr Alihan KayaMIPLM subject matter expert Dr Alihan Kaya
MIPLM subject matter expert Dr Alihan Kaya
MIPLM
Ìý
Antifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri DabhadeAntifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
Ìý
MIPLM subject matter expert Sascha Kamhuber
MIPLM subject matter expert Sascha KamhuberMIPLM subject matter expert Sascha Kamhuber
MIPLM subject matter expert Sascha Kamhuber
MIPLM
Ìý
MIPLM subject matter expert Nicos Raftis
MIPLM subject matter expert Nicos RaftisMIPLM subject matter expert Nicos Raftis
MIPLM subject matter expert Nicos Raftis
MIPLM
Ìý
Sulfonamides by Mrs. Manjushri P. Dabhade
Sulfonamides by Mrs. Manjushri P. DabhadeSulfonamides by Mrs. Manjushri P. Dabhade
Sulfonamides by Mrs. Manjushri P. Dabhade
Dabhade madam Dabhade
Ìý
Design approaches and ethical challenges in Artificial Intelligence tools for...
Design approaches and ethical challenges in Artificial Intelligence tools for...Design approaches and ethical challenges in Artificial Intelligence tools for...
Design approaches and ethical challenges in Artificial Intelligence tools for...
Yannis
Ìý

Java67

  • 1. Java67 - Java Program Example Tutorial Blog Java Tutorial Example program tips homework assignment solution, interview question answers eclipse debugging unix linux sql xml blog SATURDAY, DECEMBER 8, 2012 How to reverse String in Java with or without StringBuffer Example Reverse String in Java There are many ways to reverse String in Java. You can use rich Java API to quickly reverse contents of any String object. Java library provides StringBuffer and StringBuilder class with reverse() method which can be used to reverse String in Java. Since converting between String and StringBuffer or StringBuilder is very easy it's the most easy way available to reverse String in Java. At the same time Writing Java program to reverse String in Java without StringBuffer is one of the popular Java String interview question, which requires you to reverse String by applying logic and by not using API methods. Since reverse is a recursive job, you can use recursion as well as loop to reverse String in Java. In this Java tutorial I have shown How to reverse String using StringBuffer, StringBuilder and using pure loop with logic. You can also check How to reverse String with recursion in Java, if you want to see recursive code. let's see complete Java program for this beautiful Java programming exercise. Java program to reverse String in Java Here is my complete code program to reverse any String in Java. In main method we have first used StringBuffer andStringBuilder to reverse contents of String and then we wrote our own logic to reverse String. This usestoCharArray() method of String class which return character array of String. By looping through character array and appending it into empty String we can get reversed String in Java, as shown in following example. /** * * Java program to reverse String in Java. There are multiple ways to reverse * String in Java, you can either take help of standard Java API StringBuffer * to reverse String in Java. StringBuffer has a reverse() method which return StringBuffer * with reversed contents. On the other hand you can also reverse it by applying your * own logic, if asked to reverse String without using StringBuffer in Java. By the way * you can also use StringBuilder to reverse String in Java. StringBuilder is non thread-safe * version of StringBuffer and provides similar API. You can use StringBuilder's reverse() * method to reverse content and then convert it back to String * * @author http://java67.blogspot.com */ public class StringReverseExample { public static void main(String args[]) {
  • 2. //quick wasy to reverse String in Java - Use StringBuffer String word = "HelloWorld"; String reverse = new StringBuffer(word).reverse().toString(); System.out.printf(" original String : %s , reversed String %s %n", word, reverse); //another quick to reverse String in Java - use StringBuilder word = "WakeUp"; reverse = new StringBuilder(word).reverse().toString(); System.out.printf(" original String : %s , reversed String %s %n", word, reverse); //one way to reverse String without using StringBuffer or StringBuilder is writing //own utility method word = "Band"; reverse = reverse(word); System.out.printf(" original String : %s , reversed String %s %n", word, reverse); } public static String reverse(String source){ if(source == null || source.isEmpty()){ return source; } String reverse = ""; for(int i = source.length() -1; i>=0; i--){ reverse = reverse + source.charAt(i); } return reverse; } } Output: original String : HelloWorld , reversed String dlroWolleH original String : WakeUp , reversed String pUekaW original String : Band , reversed String dnaB That's all on How to reverse String in Java with and without StringBuffer and StringBuilder. Though being a Java programmer I prefer to use library and suggest any one to use StringBuffer or StringBuilder to reverse String for any production use. Though its also a good programming exercise and you should practice it before going for any Java programming interview. Other Java tutorials you may like String matches examples in Java Difference between String and StringBuffer in Java Best way to convert numbers to String in Java Difference between == and equals method in Java How to create Enum from String in Java How to use contains and indexOf method in String Java You might like:
  • 3. How to format Date in Java - SimpleDateFormat Example | Java67 - Java Program Example Tutorial Blog JDOM Example : Reading and Parsing XML with SAX parser in Java | Java67 - Java Program Example Tutorial Blog 10 points about Object in Java and Object oriented programming language | Java67 - Java Program Example Tutorial Blog Java Interview Questions for 2 to 3 years experience - Answered | Java67 - Java Program Example Tutorial Blog
  • 4. [?] Posted by Javin Paul at 3:04 AM Email ThisBlogThis!Share to TwitterShare to Facebook Labels: coding, core java, core java interview question answer, programming 1 comment: 1. RakeshJanuary 8, 2013 at 11:09 PM Indeed it's commonly asked to write a Java program to reverse String in Java without using reverse function and it's not EASY. first of all reverse can have different meaning e.g. reverse word by word or reverse each character, preserving whitespace etc. They may ask you to use recursion to write reverse String function instead of using for loop. Best way is to prepare well with all kinds of String related question. Reply Newer PostOlder PostHome Subscribe to: Post Comments (Atom) 2 JAVA67 HEADLINE ANIMATOR ↑ Grab this Headline Animator RECENT POSTS WIDGET FOLLOWERS BLOG ARCHIVE
  • 5. â–º 2013 (9) â–¼ 2012 (137) o â–¼ December (26)  How Constructor Chaining works in Java - Example  Producer Consumer Problem with Wait and Notify Exa...  What is public private protected and package or de...  10 points about Object in Java and Object oriented...  Difference between ArrayList vs LinkedList in Java...  How to display date in multiple timezone in Java w...  How to remove element from Array in Java with Exam...  How to convert java.sql.Date to java.util.Date in ...  JDBC Interview questions answers in Java - 2 to 4 ...  How to check leap year in Java - program example  Unix command to find IP address from hostname - Li...  How to run Java program from jar file in command l...  Difference between RuntimeException and checked Ex...  Difference between GenericServlet vs HttpServlet i...  Bubble sort in Java - program to sort integer arra...  Difference between Array vs ArrayList in Java  How to remove all white space from String in Java ...  trustStore vs keyStore in Java SSL  How to convert String from lowercase to uppercase ...  NoClassDefFoundError vs ClassNotFoundExcepiton in ...  Main method Interview Questions in Java - FAQ  How to read user input from Console in Java using ...  How to reverse String in Java with or without Stri...  Difference between Error vs Exception in Java - In...  How to create and initialize List or ArrayList in ...  What is difference between Thread vs Process in Ja... o â–º November (8) o â–º October (28) o â–º September (26) o â–º August (42) o â–º July (7) Jobs Senior Software Engineer Bangalore, India SuccessFactors $1,000 Referral Reward
  • 6. Senior Software Engineer UI Bangalore, India SuccessFactors $1,000 Referral Reward Software Engineering Intern Bangalore, India SuccessFactors $1,000 Referral Reward PHP Web Developer / Programmer Las Vegas, NV Doppler Internet Manager Resourcing Sunnyvale, CA TruGlobal POST A JOB > POWERED BY JOBTHREAD Simple template. Powered by Blogger.