Without going through the char sequence is there any way to reverse String in Java
String
You may use StringBuilder..
String word = "Hello World!"; StringBuilder sb = new StringBuilder(word); System.out.print(sb.reverse());