Without going through the char sequence is there any way to reverse String in Java
String
Try this,
String s = "responses"; StringBuilder builder = new StringBuilder(s); System.out.println(builder.reverse());