在Java中,可以使用以下方法來(lái)去掉字符串中的某些字符:
String str = "Hello, World!";
String newStr = str.replaceAll("[, ]", "");
System.out.println(newStr); // Output: HelloWorld!
String str = "Hello, World!";
String newStr = str.replace(",", "").replace(" ", "");
System.out.println(newStr); // Output: HelloWorld!
String str = "Hello, World!";
String newStr = str.substring(0, 5) + str.substring(7);
System.out.println(newStr); // Output: HelloWorld!
這些方法都可以根據(jù)具體需求選擇使用,根據(jù)實(shí)際情況選擇最適合的方法來(lái)去掉字符串中的某些字符。