String uid = selenium.getTable("bc."+i+"."+0);
System.out.println(uid);
int bcid = Integer.parseInt(uid);
if(uid != "' '"){
selenium.type("bcname", s.getCell(0, i).getContents());
}else{
System.out.println("Not edited");
}
我需要检查我的'uid'值是否仍然无效。但它不起作用,我知道问题是什么。我怎么能检查不是空值,请帮帮我
答案 0 :(得分:0)
您可以使用以下代码检查字符串是否为空
if(!uid.isEmpty())