List<String> rowList = new ArrayList<>(); 如何判断rowList中保存的字符串不是"" 并且不是null
时间: 2024-01-01 07:08:03 浏览: 109
JavaScript 实现判断是否为字符串
可以使用以下代码来判断:
```java
if (rowList != null && !rowList.isEmpty()) {
for (String str : rowList) {
if (str != null && !str.isEmpty()) {
// 字符串不为空
}
}
}
```
首先判断rowList不为空且不为空集合,然后循环遍历每个字符串,判断字符串不为null且不为空。如果满足条件,则表示该字符串不为空。
阅读全文