可以通过调用StringBuffer的reverse()方法来实现字符串的反转操作,示例如下:
public class ReverseString { public static void main(String[] args) { String str = "hello world"; StringBuffer stringBuffer = new StringBuffer(str); stringBuffer.reverse(); String reversedStr = stringBuffer.toString(); System.out.println(reversedStr); } }
运行以上代码,输出结果为:
dlrow olleh