將EXCEL匯出成ZIP壓縮包

來源:互聯網
上載者:User

資料處理層:

List<File> fileList = new ArrayList<File>();String[] array = {"編碼","名稱"};XSSFWorkbook wb = new XSSFWorkbook();XSSFSheet sheet = wb.createSheet("資料內容");XSSFRow row = sheet.createRow(0);XSSFCellStyle style = wb.createCellStyle();style.setAlignment(HSSFCellStyle.ALIGN_CENTER);for(int j = 0; j < array.length; j++){//迴圈表頭XSSFCell cell = row.createCell(j);cell.setCellStyle(style);cell.setCellValue(array[j]);}row = sheet.createRow(1);row.createCell(0).setCellValue("123456");row.createCell(1).setCellValue("小明");FileOutputStream out = null;File file = File.createTempFile("fileName_", ".xlsx");out = FileUtils.openOutputStream(file);wb.write(out);//將資料寫到指定檔案fileList.add(file);out.close();wb.close();

壓縮成ZIP包:

private void toZip(List<File> fileList) throws IOException{if(null != fileList && !fileList.isEmpty()){byte[] buf = new byte[1024];String url = REAL_PATH + "/" + EXPORT_URL + "/" + TABLE_NAME;String fi = url + "/" + TABLE_NAME + ".zip";FileOutputStream os = new FileOutputStream(fi);ZipOutputStream zipOut = new ZipOutputStream(os);for(File file : fileList){FileInputStream in = new FileInputStream(file);zipOut.putNextEntry(new ZipEntry(file.getName()));int len;while((len = in.read(buf)) > 0){zipOut.write(buf, 0, len);}zipOut.closeEntry();in.close();file.delete();//清除臨時文檔}zipOut.close();}}


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.