Without going through the char sequence is there any way to reverse String in Java
String
Try reverse() method:
StringBuilder stringName = new StringBuilder(); String reverse = stringName.reverse().toString();