gpt4 book ai didi

java - 使用 Apache POI 的空白列和行的空指针

转载 作者:行者123 更新时间:2023-11-30 09:28:04 27 4
gpt4 key购买 nike

我需要有关反复出现的问题的帮助。早些时候我问了一个类似的问题,但得到了部分回答。问题 here问题是每次我想写在没有任何数据或空白的行上时,我总是会遇到空指针错误问题。我的临时解决方案是用数据填充这些行,这样我就可以在每一列上写一些东西。另外,帮助我的一位志愿者给出的解决方案只是暂时的。我对我的代码做了一些改动(如下)。空指针错误指向带有双星号的行。

public void writeSomething(XSSFWorkbook wb){
for (String elem: listOfSheetNames){
if (elem.equals("Sheet2")){

sheet = wb.getSheet(elem);
XSSFRow row = sheet.getRow(2);
**XSSFCell cell = row.getCell(3, Row.CREATE_NULL_AS_BLANK );

if (cell.getCellType() == Cell.CELL_TYPE_BLANK){
cell = row.createCell(3);
cell.setCellType(Cell.CELL_TYPE_STRING);
cell.setCellValue("this was blank");
}
}
}
}

我继续研究这个问题,发现他们使用的是 MissingCellPolicy 指示 here我继续尝试该代码,但它不起作用,所以我检查了 Apache Docs,他们有 Row.Create_Null_as_Blank 但我不确定它是否与 MissingCellPolicy.Create_Null_as_Blank 相同,或者后者只是在以前的 poi 版本中使用过。尽管这应该已经解决了有关空白列或行的问题。我仍然收到空指针异常错误。如果有帮助,我正在使用 Apache poi 3.9 版 btw。非常感谢任何帮助。谢谢

更新 1

我使用 jims 解决方案更新了我的代码。我添加了一个方法来检查一行是否存在。但是我仍然有两个星号的相同错误显示。这是我的代码:

public void writeSomething(XSSFWorkbook wb){
for (String elem: listOfSheetNames){
if (elem.equals("Sheet2")){
int y=1;
sheet = wb.getSheet(elem);
XSSFRow row = null; //create row variable outside if scope

if (isRowEmpty(sheet.getRow(4))== false){
row = sheet.createRow(4);
}

**XSSFCell cell = row.getCell(y, Row.CREATE_NULL_AS_BLANK );

if (cell.getCellType() == Cell.CELL_TYPE_BLANK){
cell = row.createCell(y);
cell.setCellType(Cell.CELL_TYPE_STRING);
cell.setCellValue("Hooooy this was blank");
}

}
}
}

isRowEmpty
public boolean isRowEmpty(Row row){

if (row == null){
return true;
}
else {
return false;
}
}

更新2

我为我的代码找到了一个解决方法,以防万一有人发现它有用。我没有使用 row.getCell,因为我总是遇到 NUll 指针错误。看下面的代码

public void writeSomething(XSSFWorkbook wb){
for (String elem: listOfSheetNames){
if (elem.equals("Sheet2")){
int y=1; //sets column number
sheet = wb.getSheet(elem);
XSSFRow row = null; //create row variable outside if scope

if (isRowEmpty(sheet.getRow(19))== false){
row = sheet.createRow(19);
XSSFCell cell = row.createCell(y);
cell.setCellType(Cell.CELL_TYPE_STRING);
cell.setCellValue("Hooooy this was blank");
}

}
}
}

最佳答案

如果您需要的单元格不存在,您必须创建

HSSFRow.createCell(int columnIndex, int type) 

同样,如果该行不存在,则创建它

HSSFSheet.createRow(int rownum)

XSSF 也有相同的方法。

关于java - 使用 Apache POI 的空白列和行的空指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14228887/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com