有两种常用的方法来删除Java字符串中的某个字符:
String str = "Hello World";
char charToRemove = 'o';
int index = str.indexOf(charToRemove);
if(index != -1) {
str = str.substring(0, index) + str.substring(index + 1);
}
System.out.println(str); // 输出 "Hell World"
String str = "Hello World";
char charToRemove = 'o';
str = str.replace(String.valueOf(charToRemove), "");
System.out.println(str); // 输出 "Hell Wrld"
这两种方法都可以删除指定的字符,可以根据具体需求选择使用哪种方法。