Katalon系列二十:读写Excle
Posted songzhenhua
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Katalon系列二十:读写Excle相关的知识,希望对你有一定的参考价值。
import org.apache.poi.xssf.usermodel.XSSFSheet import org.apache.poi.xssf.usermodel.XSSFWorkbook FileInputStream file = new FileInputStream (new File("E:\Testdata.xlsx")) XSSFWorkbook workbook = new XSSFWorkbook(file); XSSFSheet sheet = workbook.getSheetAt(0); ‘Read data from excel‘ String Data_fromCell=sheet.getRow(1).getCell(1).getStringCellValue(); ‘Write data to excel‘ sheet.getRow(1).createCell(1).setCellValue("Mahesh2"); file.close(); FileOutputStream outFile =new FileOutputStream(new File("E:\Testdata.xlsx")); workbook.write(outFile); outFile.close();
可以看到,跟JAVA是一样的,所以操作其他文件的方法也可以抄JAVA
以上是关于Katalon系列二十:读写Excle的主要内容,如果未能解决你的问题,请参考以下文章
katalon系列十七:报告&Katalon Analytics