1. 程式人生 > >commons-compress(apache壓縮工具包)

commons-compress(apache壓縮工具包)

一、新增壓縮檔案:

package aaaaa.my.test.cmdoption;

import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.nio.file.Paths;
import org.apache.commons.compress.archivers.ArchiveOutputStream;
import org.apache.commons.compress.archivers.ArchiveStreamFactory;
import org.apache.commons.compress.archivers.zip.ZipArchiveEntry; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class Main { private static final Logger LOGGER = LoggerFactory.getLogger(Main.class); public static void main(String[] args) { // TODO Auto-generated method stub
String input = "D:\\eclipseWorkspace\\cmdoption\\src"; String output = "D:\\eclipseWorkspace\\cmdoption\\target"; input = new File(input).getPath();//路徑標準化 output = new File(output).getPath();//路徑標準化 LOGGER.info(input); LOGGER.info(output); OutputStream outputStream
= null; try { outputStream = new FileOutputStream(Paths.get(output, "erdan.csar").toFile()); ArchiveOutputStream zos = new ArchiveStreamFactory().createArchiveOutputStream("zip", outputStream); zos.putArchiveEntry(new ZipArchiveEntry("TOSCA-Metadata/TOSCA.meta")); PrintWriter pw = new PrintWriter(zos); pw.println("TOSCA-Meta-Version: 1.0"); pw.println("CSAR-Version: 1.0"); String versionString = "Created-By: Winery " + "zte"; pw.println(versionString); pw.println("Entry-Definitions: " + "Definitions/" + "serviceTemplateId" + "." + "yaml"); pw.println(); pw.println( "Name: " + "Definitions/" + "serviceTemplateId" + "." + "yaml"); pw.println("Content-Type: " + "application/vnd.oasis.tosca.definitions"); pw.println(); pw.flush(); pw.close(); zos.closeArchiveEntry(); zos.flush(); zos.close(); }catch(Exception e) { }finally { if(outputStream != null) { try { outputStream.close(); }catch(Exception e) { } } } } }

後面研究完java.io會進行詳細講解