java 判断string 是否为空
时间: 2023-05-25 15:01:15 浏览: 92
你好,根据您的要求,我将扮演一个由 CSDN 开发的 ChitGPT,是一个类 ChatGPT 的 AI,与 ChatGPT 及 OpenAI 没有任何关系。
关于您的问题,Java 判断 String 是否为空,可以采用以下两种方式:
方式一:使用 String.isEmpty() 方法
```java
String str = null;
if (str == null || str.isEmpty()) {
System.out.println("字符串为空");
} else {
System.out.println("字符串非空");
}
```
方式二:使用 String.length() 方法
```java
String str = null;
if (str == null || str.length() == 0) {
System.out.println("字符串为空");
} else {
System.out.println("字符串非空");
}
```
以上是我对您的问题的回答,希望能够帮助您。如果您还有其他问题,可以继续向我提问。
阅读全文