标签:java string
方法三: Java SE 6.0 才开始提供的方法, 效率和方法二几乎相等, 但出于兼容性考虑, 推荐使用方法二.
1:if(s == null || s.equals("")); 2:if(s == null || s.length() <= 0); 3:if(s == null || s.isEmpty());
java判断字符串是否为空
原文地址:http://blog.csdn.net/gisredevelopment/article/details/38755111