我正在开发一个android应用程序。我从webservice获取一个String值为null。我正在获取值并将其存储在String变量中。然后,当我使用Log打印该值时,如Log.i(“tag”,“``!!! cell>>”+ cell);,我在屏幕上打印出空值。现在我需要的是我需要检查变量'null'并且我想显示一个没有值的文本字段,如果它是'null'。我使用以下语句进行检查
if(!cell.equals(null) || !cell.equals("")) {
_______
} else {
_______
}
但如果值'null'
,控件不会进入else部分请给我一个解决方案。
提前致谢。
答案 0 :(得分:10)
当cell
为null,并且您尝试在其上调用方法时,您将遇到空指针异常。
我会说
if(cell !=null && !cell.isEmpty()) {
_______yes, disply
} else {
_______nope, some thing wrong
}
答案 1 :(得分:2)
它不是equals(null)
if(cell != null || !cell.isEmpty())
答案 2 :(得分:1)
答案 3 :(得分:1)
我会试试这个,似乎对我有用!
if(TextUtils.isEmpty(yourString) && yourString == null){
}
else if(!TextUtils.isEmpty(yourString) && yourString != null){
}
答案 4 :(得分:0)
如果字符串的值为null,!cell.equals("")
将评估为true,因此当您使用OR条件时,它将进入if部分而不是else部分。
NULL!="" (空字符串)!!!
答案 5 :(得分:0)
使用此:
if (cell != null && cell.trim().length() > 0) {
// do whatever you want
} else {
// the string received is null
}
答案 6 :(得分:0)
Android提供了一个简单的实用程序
TextUtils.isEmpty(<<stringVariable>>);
更多详情@ http://developer.android.com/reference/android/text/TextUtils.html
答案 7 :(得分:0)
工作!!!
if (string.matches("")&& string.trim().equals("null")){
return false;
}
else{
return true;
}