字符串反转代码 123public static String reverseTestOne(String s) { return new StringBuffer(s).reverse().toString();}