1. 首页
  2. 服务器应用
  3. 虚拟化
  4. 创建或读取Excel表

创建或读取Excel表

上传者: 2020-10-26 17:00:38上传 JAVA文件 5.54KB 热度 20次
public static int createdExcel(String PATH, List list, String title, String[] rowsName, String merged) { try { File myFile = new File(PATH); if (!myFile.exists()) { myFile.createNewFile(); } WritableWorkbook wbook = Workbook.createWorkbook(myFile); // 创建一个可写返回工作薄同给定
下载地址
用户评论