Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Without go through the char sequence is there any way to reverse String in Java

share|improve this question

6 Answers

up vote 12 down vote accepted

Try this,

String s = "responses";
StringBuilder builder = new StringBuilder(s);
System.out.println(builder.reverse());
share|improve this answer

You can use the StringBuilder#reverse() method:

String reverse = new StringBuilder(originalString).reverse().toString();
share|improve this answer

Use StringBuilder's or StringBuffer's method... reverse()

 public class StringReverse
{
  public static void main(String[] args)
  {
  String string=args[0];
  String reverse = new StringBuffer(string).reverse().toString();
  System.out.println("\nString before reverse: "+string);
  System.out.println("String after reverse: "+reverse);
  } 
} 

StringBuffer is thread-safe, where as StringBuilder is Not thread safe..... StringBuilder was introduced from Java 1.5, as to do those operations faster which doesn't have any Concurrency to worry about....

share|improve this answer
Sorry...by mistake i missed the Builder and Buffer part – Kumar Vivek Mitra Sep 6 '12 at 17:52
See the example – Kumar Vivek Mitra Sep 6 '12 at 17:53
You should use StringBuilder vs. StringBuffer, unless you have concurrency problems to solve. – assylias Sep 6 '12 at 17:56
Added the diff b/w Builder and Buffer – Kumar Vivek Mitra Sep 6 '12 at 17:59

Try reverse() method:

StringBuilder stringName = new StringBuilder();
String reverse = stringName.reverse().toString();
share|improve this answer
Are you sure that this method exists? docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html – Serkan Arıkuşu Sep 7 '12 at 13:31
Thanks for your advice, the question it´s not correctly answered – lfergon Sep 7 '12 at 20:36

You can use String buffer to reverse a string.

public String reverse(String s) {
    return new StringBuffer(s).reverse().toString();
}

one more interesting way to do this is recursion.

public String reverse(String s) {
    if (s.length() <= 1) { 
        return s;
    }
    return reverse(s.substring(1, s.length())) + s.charAt(0);
}
share|improve this answer

You may use StringBuilder..

String word = "Hello World!";
StringBuilder sb = new StringBuilder(word);

System.out.print(sb.reverse());
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.