POI-文本提取

前言

本篇文章,主要说明Excel萃取类这个用于,可以快速读取TEXT文档。

实例

public static void main(String[] args) throws Exception
{
  //输入流
  InputStream is = new FileInputStream("f:\\2.xls");
  //文件处理系统
  POIFSFileSystem fs = new POIFSFileSystem(is);
  //定义工作簿
  HSSFWorkbook wb = new HSSFWorkbook(fs);
  
  //excel萃取器
  ExcelExtractor excel = new ExcelExtractor(wb);
  
  //选择是否读取公式结果
  excel.setFormulasNotResults(true);
  //选择是否按照单元格格式显示
  excel.setIncludeBlankCells(false);
  //选择是否显示注释
  excel.setIncludeCellComments(true);
  //选择是否显示头脚注
  excel.setIncludeHeadersFooters(true);
  //选择是否需要显示sheet
  excel.setIncludeSheetNames(true);

  //输出text
  System.out.println(excel.getText());
  
}
总结:这个Excel萃取器的工具类方法不多,可以直接读取简单的表格,复杂的会显得吃力。但是重点在于方便,可以快速的显示Excel内容。


你可能感兴趣的:(POI)