poi提取excel文本信息
import org.apache.poi.hssf.extractor.ExcelExtractor;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
import java.io.FileInputStream;
import java.io.InputStream;
/**
* @ClassName 类名:ExcelDemo3
* @Author作者: hzh
* @Date时间:2018/12/4 10:56
* 文本提取
**/
public class ExcelDemo3 {
public static void main(String[] args) throws Exception{
InputStream inputStream = new FileInputStream("D:\\file\\工作薄.xls");
POIFSFileSystem poifsFileSystem = new POIFSFileSystem(inputStream);
HSSFWorkbook wb = new HSSFWorkbook(poifsFileSystem);
ExcelExtractor excelExtractor = new ExcelExtractor(wb);
excelExtractor.setIncludeSheetNames(false);//不需要sheet页的名字
System.out.println(excelExtractor.getText());
}
}
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/my773962804/article/details/84878755
内容来源于网络,如有侵权,请联系作者删除!