Without going through the char sequence is there any way to reverse String in Java
String
This is a way to do so using recursion -
public static String reverse(String s1){ int l = s1.length(); if (l>1) return(s1.substring(l-1) + reverse(s1.substring(0,l-1))); else return(s1.substring(0)); }