public static String reverse(String str){ if(str==null||str.length()<=1){ return str; } return new StringBuffer(str).reverse().toString(); }