代替
if(!(line.contains(':'))){ //error on this line
使用
if(!(line.contains(":"))){ //error on this line
从String java doc开始
contains
public boolean contains(CharSequence s)
当且仅当此字符串包含指定的char值序列时,返回true.
参数:
s - 要搜索的序列
返回:
如果此字符串包含s,则返回 true,否则返回 false
如果你看到contains方法的源代码
当且仅当此字符串包含指定的char值序列时,才返回true.参数:s要搜索的序列返回:如果此字符串包含s,则返回true,否则返回false抛出:如果s为null则返回NullPointerException:1.5
2114 public boolean More ...contains(CharSequence s) { 2115 return indexOf(s.toString()) > -1; 2116 }