在Java中,可以使用以下方法來判斷一個字符串是否為空:
isEmpty()
方法:String str = "";
if (str.isEmpty()) {
System.out.println("字符串為空");
} else {
System.out.println("字符串不為空");
}
length()
方法:String str = "";
if (str.length() == 0) {
System.out.println("字符串為空");
} else {
System.out.println("字符串不為空");
}
equals()
方法:String str = "";
if (str.equals("")) {
System.out.println("字符串為空");
} else {
System.out.println("字符串不為空");
}
這些方法都可以用來判斷一個字符串是否為空,可以根據(jù)實際需求選擇其中的一種方法來使用。