使用 Apache POI 更新 excel 文件
Posted
技术标签:
【中文标题】使用 Apache POI 更新 excel 文件【英文标题】:Updating excel file using Apache POI 【发布时间】:2015-11-23 05:37:55 【问题描述】:我正在尝试使用 Apache POI 更新现有的 excel 文件。每次我运行我的代码时,我都会收到如下所示的错误。我也试过 FileInputStreamNewFile 的东西。
Exception in thread "main" java.lang.NullPointerException
at com.gma.test.WriteExcelTest.writeXLSXFile(WriteExcelTest.java:26)
at com.gma.test.WriteExcelTest.main(WriteExcelTest.java:44)
请在下面找到代码。感谢您的帮助。
package com.gma.test;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class WriteExcelTest
public static void writeXLSXFile(int row, int col) throws IOException
try
FileInputStream file = new FileInputStream("C:\\Anuj\\Data\\Data.xlsx");
XSSFWorkbook workbook = new XSSFWorkbook(file);
XSSFSheet sheet = workbook.getSheetAt(0);
Cell cell = null;
//Update the value of cell
cell = sheet.getRow(row).getCell(col);
cell.setCellValue("Pass");
file.close();
FileOutputStream outFile =new FileOutputStream(new File("C:\\Anuj\\Data\\Data.xlsx"));
workbook.write(outFile);
outFile.close();
catch (FileNotFoundException e)
e.printStackTrace();
catch (IOException e)
e.printStackTrace();
public static void main(String[] args) throws IOException
// TODO Auto-generated method stub
writeXLSXFile(3, 3);
【问题讨论】:
在设置值之前检查 sheet.getRow(row) 是否不为空,然后单元格不为空 如果你要求一个未定义的行|单元格,你会得到一个空值!! 【参考方案1】:如果你替换
//Update the value of cell
cell = sheet.getRow(row).getCell(col);
cell.setCellValue("Pass");
有
//Retrieve the row and check for null
HSSFRow sheetrow = sheet.getRow(row);
if(sheetrow == null)
sheetrow = sheet.createRow(row);
//Update the value of cell
cell = sheetrow.getCell(col);
if(cell == null)
cell = sheetrow.createCell(col);
cell.setCellValue("Pass");
它会起作用的!
【讨论】:
如果 sheet.getRow(row) 返回 Null 怎么办? 对行做类似的检查 是的,行和单元格都是从 0 开始的,所以在示例中,如果他在 D4 上没有值,他会得到 NullPointerException。【参考方案2】:感谢 Jelle Heuzel 提供了一个很好的例子。 我只是想添加生成的工作代码,以便其他人可以更快地将其合并到他们的代码中。
我还必须使用 XSSFRow 而不是 HSSFRow,但除此之外它对我来说效果很好。
package ***.appachePOI;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class WriteExcelTest
public static void writeXLSXFile(int row, int col) throws IOException
try
FileInputStream file = new FileInputStream("C:\\Users\\Sam\\files\\Masterproef lca\\lca-analysebeheer\\Test-Files\\exceltemplates\\template.xlsx");
XSSFWorkbook workbook = new XSSFWorkbook(file);
XSSFSheet sheet = workbook.getSheetAt(0);
Cell cell = null;
//Retrieve the row and check for null
XSSFRow sheetrow = sheet.getRow(row);
if(sheetrow == null)
sheetrow = sheet.createRow(row);
//Update the value of cell
cell = sheetrow.getCell(col);
if(cell == null)
cell = sheetrow.createCell(col);
cell.setCellValue("Pass");
file.close();
FileOutputStream outFile =new FileOutputStream(new File("C:\\Users\\Sam\\files\\Masterproef lca\\lca-analysebeheer\\Test-Files\\exceltemplates\\Output.xlsx"));
workbook.write(outFile);
outFile.close();
catch (FileNotFoundException e)
e.printStackTrace();
catch (IOException e)
e.printStackTrace();
public static void main(String[] args) throws IOException
// TODO Auto-generated method stub
writeXLSXFile(3, 3);
【讨论】:
在此处给出空指针异常 XSSFSheet sheet = workbook.getSheetAt(0);这里有人吗? 首先猜测是您的文件流出现问题,无法创建您的工作簿。【参考方案3】:我试过这个并为 XLSX 和 XSSF 工作
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class TestStackOver
public static void writeXLSXFile(int row, int col) throws IOException
try
FileInputStream file = new FileInputStream(Constante.ruta);
XSSFWorkbook workbook = new XSSFWorkbook(file);
XSSFSheet sheet = workbook.getSheetAt(0);
Cell cell = null;
//Retrieve the row and check for null
XSSFRow sheetrow = sheet.getRow(row);
if(sheetrow == null)
sheetrow = sheet.createRow(row);
//Update the value of cell
cell = sheetrow.getCell(col);
if(cell == null)
cell = sheetrow.createCell(col);
cell.setCellValue("Pass");
file.close();
FileOutputStream outFile =new FileOutputStream(new File(Constante.ruta_salida));
workbook.write(outFile);
outFile.close();
catch (FileNotFoundException e)
e.printStackTrace();
catch (IOException e)
e.printStackTrace();
public static void main(String[] args) throws IOException
// TODO Auto-generated method stub
System.out.println("inicio");
writeXLSXFile(1, 14);
System.out.println("terminado");
【讨论】:
以上是关于使用 Apache POI 更新 excel 文件的主要内容,如果未能解决你的问题,请参考以下文章
使用 Apache POI 从 Java 应用程序删除行时 Excel 公式未更新
java通过apache poi框架读取2007版Excel文件