可以使用StringBuilder的reverse()方法来实现字符串逆序输出。具体代码如下:
public class ReverseString {
public static void main(String[] args) {
String str = "Hello World!";
StringBuilder sb = new StringBuilder(str);
sb.reverse();
System.out.println(sb.toString());
}
}
输出结果为:!dlroW olleH