本文介绍: poi
Apache POI
写excel
public static void write() throws IOException {
//再内存中创建了一个Excel文件
XSSFWorkbook excel = new XSSFWorkbook();
//创建一个sheet页
XSSFSheet sheet = excel.createSheet("info");
//这里创建行对象,这里的rownum 是从0开始的,类似于数组
XSSFRow row = sheet.createRow(1);
//创建单元格 这里的index也是从0开始的
row.createCell(1).setCellValue("姓名"); //创建单元格,并且设置单元格内容
row.createCell(3).setCellValue("城市");
//新起一行
row = sheet.createRow(2);
row.createCell(1).setCellValue("jjking");
row.createCell(3).setCellValue("广州");
FileOutputStream fos = new FileOutputStream(new File("info.xlsx"));
excel.write(fos);
//关闭资源
fos.close();
excel.close();
}
这个也不用过多的介绍,我们只要照着写就ok了,没什么难的
这样子,过后写好的excel,是这样的
读excel
public static void read() throws IOException, InvalidFormatException {
XSSFWorkbook excel = new XSSFWorkbook(new File("info.xlsx"));
//读取sheet页
XSSFSheet sheet = excel.getSheetAt(0);
//读取最后一个有文字的行号
int lastRowNum = sheet.getLastRowNum();
//从第2行开始读
for(int i = 1; i <= lastRowNum; i++) {
//获取行
XSSFRow row = sheet.getRow(i);
//获取单元格的对象
String cellValue1 = row.getCell(1).getStringCellValue();
String cellValue2 = row.getCell(3).getStringCellValue();
System.out.println(cellValue1 + " " + cellValue2);
}
excel.close();
}
原文地址:https://blog.csdn.net/weixin_52232901/article/details/135942073
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_63513.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。