在Java中,你可以使用字符串的length()方法來判斷字符串是否為空。如果字符串的長度為0,則表示字符串為空。你可以按照以下方法來實現:
String str = "example";
if(str.length() == 0){
System.out.println("字符串為空");
} else {
System.out.println("字符串不為空");
}
另外,你也可以使用isEmpty()方法來判斷字符串是否為空,示例如下:
String str = "example";
if(str.isEmpty()){
System.out.println("字符串為空");
} else {
System.out.println("字符串不為空");
}