poi的EXCEL出错
空指针 for (int i = 0; i < n; i++) {
if (sheet1.getRow(i).getCell(1).toString()=="Sequence No") {
rowflag=i;
}
}
Exception in thread "main" java.lang.NullPointerException
at com.cargosmart.vec.Len.POISample.main(POISample.java:54)
在循环时候遇到,这是什么问题。循环没有超过边界。
------解决方案--------------------有单元格没有值吧
------解决方案--------------------首页确定sheet1.getRow(i) 不能为null,
sheet1.getRow(i).getCell(1)不能为null,
然后你再可以toString(),
== 这个是不是equals