StringBuffer 类包含一个称为 deleteCharAt() 的方法。此方法删除指定索引/位置处的字符。您可以使用此方法在 Java 中删除/移除字符串中的特定字符。示例 public class Test { public static void main(String args[]){ String str = "hi welcome to Tutorialspoint"; StringBuffer sb= new StringBuffer(str); sb.deleteCharAt(sb.length()-1); System.out.println(sb); } }输出 hi welcome to Tutorialspoin