Java 字符串去掉空格的方法有以下幾種:
String str = " Hello World ";
String trimmedStr = str.trim(); // "Hello World"
String str = " Hello World ";
String trimmedStr = str.replaceAll("\\s+", ""); // "HelloWorld"
import org.apache.commons.lang3.StringUtils;
String str = " Hello World ";
String trimmedStr = StringUtils.deleteWhitespace(str); // "HelloWorld"
以上是幾種常見的去除字符串空格的方法,根據實際需求選擇合適的方法。