在Java中,可以使用以下方法來去掉字符串中的某些字符:
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!
這些方法都可以根據具體需求選擇使用,根據實際情況選擇最適合的方法來去掉字符串中的某些字符。