在Java中,可以用以下方法来判断字符串是否为空:
- 使用
length()
判断长度是否为0的方法:
String str = "hello";if (str.length() == 0) { System.out.println(“字符串为空”);}
- 使用
isEmpty()
判断方法是否为空字符串:
String str = "hello";if (str.isEmpty()) { System.out.println(“字符串为空”);}
- 使用
trim()
方法去除字符串前后的空格,然后判断是否为空:
String str = " ";if (str.trim().isEmpty()) { System.out.println(“字符串为空”);}
以上方法可用于判断字符串对象是否为空。请注意,如果字符串对象是null,上述方法将被抛出NullPointerException
,因此,在使用这些方法之前,最好先判断null。
String str = null;if (str == null || str.isEmpty()) { System.out.println(“字符串为空”);}