Java로 zip 파일을 만드는 방법


149

사용자의 쿼리에 따라 데이터베이스에서 내용을 선택하는 동적 텍스트 파일이 있습니다. 이 내용을 텍스트 파일에 쓰고 서블릿의 폴더에 압축해야합니다. 어떻게해야합니까?

답변:


231

이 예를보십시오 :

StringBuilder sb = new StringBuilder();
sb.append("Test String");

File f = new File("d:\\test.zip");
ZipOutputStream out = new ZipOutputStream(new FileOutputStream(f));
ZipEntry e = new ZipEntry("mytext.txt");
out.putNextEntry(e);

byte[] data = sb.toString().getBytes();
out.write(data, 0, data.length);
out.closeEntry();

out.close();

그러면 D:named 의 루트에 이라는 test.zip단일 파일이 포함 된 zip이 생성 됩니다 mytext.txt. 물론 더 많은 zip 항목을 추가하고 다음과 같은 하위 디렉토리를 지정할 수도 있습니다.

ZipEntry e = new ZipEntry("folderName/mytext.txt");

Java 압축에 대한 자세한 정보는 여기를 참조하십시오 .


1
byte[] data = sb.toString().getBytes(); out.write(data, 0, data.length);이 코드 샘플에 두 줄 이 포함 된 이유는 무엇 입니까? 그들의 목적은 무엇입니까?
Kaadzia

@kdzia, 첫 번째 행은 StringBuilder 값을 바이트 배열로 변환하고 두 번째 행은 해당 바이트 배열을 가져 와서 "test.zip"파일 내의 ZipEntry에 씁니다. Zip 파일은 문자열이 아닌 바이트 배열과 함께 작동하므로 이러한 행이 필요합니다.
OrangeWombat

3
그러나 ... 위의 예에서 StringBuilder에는 "Test String"이외의 다른 방법이 있습니까? 나도 이것으로 조금 혼란 스럽습니다. sb.toString().getBytes()ZIP 파일에을 쓰는 경우 압축하는 파일의 바이트를 포함하고 싶습니까? 아니면 뭔가 빠졌습니까?
RobA

3
@RobA 당신은 아무것도 누락되지 않았습니다. StringBuilder는 실제로 OP가 데이터베이스에서 가져온 텍스트를 포함해야합니다. OP는 getTextFromDatabase ()와 같은 "Test String"(따옴표 포함)을 대체해야합니다.
Blueriver

감사합니다, @Blueriver
RobA

143

Java 7에는 ZipFileSystem이 내장되어있어 zip 파일에서 파일을 작성하고 쓰고 읽을 수 있습니다.

Java Doc : ZipFileSystem 프로 바이더

Map<String, String> env = new HashMap<>();
// Create the zip file if it doesn't exist
env.put("create", "true");

URI uri = URI.create("jar:file:/codeSamples/zipfs/zipfstest.zip");

try (FileSystem zipfs = FileSystems.newFileSystem(uri, env)) {
    Path externalTxtFile = Paths.get("/codeSamples/zipfs/SomeTextFile.txt");
    Path pathInZipfile = zipfs.getPath("/SomeTextFile.txt");          
    // Copy a file into the zip file
    Files.copy(externalTxtFile, pathInZipfile, StandardCopyOption.REPLACE_EXISTING); 
}

1
확장이 아닌 경우이 작업을 수행 할 수있는 방법이 .zip있습니까? .foozip 파일과 똑같은 형식이지만 다른 확장자를 가진 파일 을 작성해야합니다 . .zip파일을 만들고 이름을 바꿀 수 있다는 것을 알고 있지만 올바른 이름 으로 파일을 만드는 것이 더 간단합니다.
트로이 다니엘스

2
@TroyDaniels 위의 예제는 jar:file:접두사를 사용하여 URI를 생성 하므로 다른 확장자로도 작동 합니다.
시바 발란

10
여기에 나타날 수있는 유일한 문제는 디렉토리가있는 경우 작동하지 않는다는 것입니다. 예를 들어, pathInZipfile변수 에 "/dir/SomeTextFile.txt"가있는 경우 .zip 아카이브 내에 'dir'을 작성해야합니다. 이를 위해 메소드 Files.createDirectories(pathInZipfile.getParent())를 호출하기 전에 다음 줄을 추가하십시오 Files.copy.
D. Naumovich

압축 수준을 설정하는 방법?
cdalxndr

34

ZIP 파일을 작성하려면 ZipOutputStream을 사용하십시오. ZIP 파일에 배치 할 각 항목에 대해 ZipEntry 객체를 만듭니다. 파일 이름을 ZipEntry 생성자에 전달합니다. 파일 날짜 및 압축 해제 방법과 같은 다른 매개 변수를 설정합니다. 원하는 경우 이러한 설정을 무시할 수 있습니다. 그런 다음 ZipOutputStream의 putNextEntry 메소드를 호출하여 새 파일 작성을 시작하십시오. 파일 데이터를 ZIP 스트림으로 보냅니다. 완료되면 closeEntry를 호출하십시오. 저장하려는 모든 파일에 대해 반복하십시오. 다음은 코드 스켈레톤입니다.

FileOutputStream fout = new FileOutputStream("test.zip");
ZipOutputStream zout = new ZipOutputStream(fout);
for all files
{
    ZipEntry ze = new ZipEntry(filename);
    zout.putNextEntry(ze);
    send data to zout;
    zout.closeEntry();
}
zout.close();

22

다음은 전체 디렉토리 (하위 파일 및 하위 디렉토리 포함) 를 압축하는 예제 코드 이며 Java NIO의 워크 파일 트리 기능을 사용하고 있습니다.

import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.file.*;
import java.nio.file.attribute.BasicFileAttributes;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;

public class ZipCompress {
    public static void compress(String dirPath) {
        final Path sourceDir = Paths.get(dirPath);
        String zipFileName = dirPath.concat(".zip");
        try {
            final ZipOutputStream outputStream = new ZipOutputStream(new FileOutputStream(zipFileName));
            Files.walkFileTree(sourceDir, new SimpleFileVisitor<Path>() {
                @Override
                public FileVisitResult visitFile(Path file, BasicFileAttributes attributes) {
                    try {
                        Path targetFile = sourceDir.relativize(file);
                        outputStream.putNextEntry(new ZipEntry(targetFile.toString()));
                        byte[] bytes = Files.readAllBytes(file);
                        outputStream.write(bytes, 0, bytes.length);
                        outputStream.closeEntry();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                    return FileVisitResult.CONTINUE;
                }
            });
            outputStream.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

이것을 사용하려면 전화하십시오.

ZipCompress.compress("target/directoryToCompress");

그리고 당신은 zip 파일 디렉토리를 얻을 것입니다


4

스프링 부트 컨트롤러, 디렉토리에 파일을 압축하고 다운로드 할 수 있습니다.

@RequestMapping(value = "/files.zip")
@ResponseBody
byte[] filesZip() throws IOException {
    File dir = new File("./");
    File[] filesArray = dir.listFiles();
    if (filesArray == null || filesArray.length == 0)
        System.out.println(dir.getAbsolutePath() + " have no file!");
    ByteArrayOutputStream bo = new ByteArrayOutputStream();
    ZipOutputStream zipOut= new ZipOutputStream(bo);
    for(File xlsFile:filesArray){
        if(!xlsFile.isFile())continue;
        ZipEntry zipEntry = new ZipEntry(xlsFile.getName());
        zipOut.putNextEntry(zipEntry);
        zipOut.write(IOUtils.toByteArray(new FileInputStream(xlsFile)));
        zipOut.closeEntry();
    }
    zipOut.close();
    return bo.toByteArray();
}

2
public static void main(String args[])
{
    omtZip("res/", "omt.zip");
}
public static void omtZip(String path,String outputFile)
{
    final int BUFFER = 2048;
    boolean isEntry = false;
    ArrayList<String> directoryList = new ArrayList<String>();
    File f = new File(path);
    if(f.exists())
    {
    try {
            FileOutputStream fos = new FileOutputStream(outputFile);
            ZipOutputStream zos = new ZipOutputStream(new BufferedOutputStream(fos));
            byte data[] = new byte[BUFFER];

            if(f.isDirectory())
            {
               //This is Directory
                do{
                    String directoryName = "";
                    if(directoryList.size() > 0)
                    {
                        directoryName = directoryList.get(0);
                        System.out.println("Directory Name At 0 :"+directoryName);
                    }
                    String fullPath = path+directoryName;
                    File fileList = null;
                    if(directoryList.size() == 0)
                    {
                        //Main path (Root Directory)
                        fileList = f;
                    }else
                    {
                        //Child Directory
                        fileList = new File(fullPath);
                    }
                    String[] filesName = fileList.list();

                    int totalFiles = filesName.length;
                    for(int i = 0 ; i < totalFiles ; i++)
                    {
                        String name = filesName[i];
                        File filesOrDir = new File(fullPath+name);
                        if(filesOrDir.isDirectory())
                        {
                            System.out.println("New Directory Entry :"+directoryName+name+"/");
                            ZipEntry entry = new ZipEntry(directoryName+name+"/");
                            zos.putNextEntry(entry);
                            isEntry = true;
                            directoryList.add(directoryName+name+"/");
                        }else
                        {
                            System.out.println("New File Entry :"+directoryName+name);
                            ZipEntry entry = new ZipEntry(directoryName+name);
                            zos.putNextEntry(entry);
                            isEntry = true;
                            FileInputStream fileInputStream = new FileInputStream(filesOrDir);
                            BufferedInputStream bufferedInputStream = new BufferedInputStream(fileInputStream, BUFFER);
                            int size = -1;
                            while(  (size = bufferedInputStream.read(data, 0, BUFFER)) != -1  )
                            {
                                zos.write(data, 0, size);
                            }
                            bufferedInputStream.close();
                        }
                    }
                    if(directoryList.size() > 0 && directoryName.trim().length() > 0)
                    {
                        System.out.println("Directory removed :"+directoryName);
                        directoryList.remove(0);
                    }

                }while(directoryList.size() > 0);
            }else
            {
                //This is File
                //Zip this file
                System.out.println("Zip this file :"+f.getPath());
                FileInputStream fis = new FileInputStream(f);
                BufferedInputStream bis = new BufferedInputStream(fis,BUFFER);
                ZipEntry entry = new ZipEntry(f.getName());
                zos.putNextEntry(entry);
                isEntry = true;
                int size = -1 ;
                while(( size = bis.read(data,0,BUFFER)) != -1)
                {
                    zos.write(data, 0, size);
                }
            }               

            //CHECK IS THERE ANY ENTRY IN ZIP ? ----START
            if(isEntry)
            {
              zos.close();
            }else
            {
                zos = null;
                System.out.println("No Entry Found in Zip");
            }
            //CHECK IS THERE ANY ENTRY IN ZIP ? ----START
        }catch(Exception e)
        {
            e.printStackTrace();
        }
    }else
    {
        System.out.println("File or Directory not found");
    }
 }    

}

2

소스 파일에서 zip 파일을 만드는 방법은 다음과 같습니다.

String srcFilename = "C:/myfile.txt";
String zipFile = "C:/myfile.zip";

try {
    byte[] buffer = new byte[1024];
    FileOutputStream fos = new FileOutputStream(zipFile);
    ZipOutputStream zos = new ZipOutputStream(fos);         
    File srcFile = new File(srcFilename);
    FileInputStream fis = new FileInputStream(srcFile);
    zos.putNextEntry(new ZipEntry(srcFile.getName()));          
    int length;
    while ((length = fis.read(buffer)) > 0) {
        zos.write(buffer, 0, length);
    }
    zos.closeEntry();
    fis.close();
    zos.close();            
}
catch (IOException ioe) {
    System.out.println("Error creating zip file" + ioe);
}

1

하나의 파일:

String filePath = "/absolute/path/file1.txt";
String zipPath = "/absolute/path/output.zip";

try (ZipOutputStream zipOut = new ZipOutputStream(new FileOutputStream(zipPath))) {
    File fileToZip = new File(filePath);
    zipOut.putNextEntry(new ZipEntry(fileToZip.getName()));
    Files.copy(fileToZip.toPath(), zipOut);
}

여러 파일 :

List<String> filePaths = Arrays.asList("/absolute/path/file1.txt", "/absolute/path/file2.txt");
String zipPath = "/absolute/path/output.zip";

try (ZipOutputStream zipOut = new ZipOutputStream(new FileOutputStream(zipPath))) {
    for (String filePath : filePaths) {
        File fileToZip = new File(filePath);
        zipOut.putNextEntry(new ZipEntry(fileToZip.getName()));
        Files.copy(fileToZip.toPath(), zipOut);
    }
}

1

주로 두 가지 기능을 만들어야합니다. 첫 번째는 writeToZipFile ()이고 두 번째는 createZipfileForOutPut .... 그리고 createZipfileForOutPut ( 'file name of .zip')`입니다.

 public static void writeToZipFile(String path, ZipOutputStream zipStream)
        throws FileNotFoundException, IOException {

    System.out.println("Writing file : '" + path + "' to zip file");

    File aFile = new File(path);
    FileInputStream fis = new FileInputStream(aFile);
    ZipEntry zipEntry = new ZipEntry(path);
    zipStream.putNextEntry(zipEntry);

    byte[] bytes = new byte[1024];
    int length;
    while ((length = fis.read(bytes)) >= 0) {
        zipStream.write(bytes, 0, length);
    }

    zipStream.closeEntry();
    fis.close();
}

public static void createZipfileForOutPut(String filename) {
    String home = System.getProperty("user.home");
   // File directory = new File(home + "/Documents/" + "AutomationReport");
    File directory = new File("AutomationReport");
    if (!directory.exists()) {
        directory.mkdir();
    }
    try {
        FileOutputStream fos = new FileOutputStream("Path to your destination" + filename + ".zip");
        ZipOutputStream zos = new ZipOutputStream(fos);

        writeToZipFile("Path to file which you want to compress / zip", zos);


        zos.close();
        fos.close();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

0

소프트웨어없이 압축 해제하려면이 코드를 사용하는 것이 좋습니다. pdf 파일이 포함 된 다른 코드는 수동 압축 해제시 오류를 보냅니다.

byte[] buffer = new byte[1024];     
    try
    {   
        FileOutputStream fos = new FileOutputStream("123.zip");
        ZipOutputStream zos = new ZipOutputStream(fos);
        ZipEntry ze= new ZipEntry("file.pdf");
        zos.putNextEntry(ze);
        FileInputStream in = new FileInputStream("file.pdf");
        int len;
        while ((len = in.read(buffer)) > 0) 
        {
            zos.write(buffer, 0, len);
        }
        in.close();
        zos.closeEntry();
        zos.close();
    }
    catch(IOException ex)
    {
       ex.printStackTrace();
    }

0

그것을 알아내는 데 시간이 걸렸으므로 Java 7 + ZipFileSystem을 사용하여 솔루션을 게시하는 것이 도움이 될 것이라고 생각했습니다.

 openZip(runFile);

 addToZip(filepath); //loop construct;  

 zipfs.close();

 private void openZip(File runFile) throws IOException {
    Map<String, String> env = new HashMap<>();
    env.put("create", "true");
    env.put("encoding", "UTF-8");
    Files.deleteIfExists(runFile.toPath());
    zipfs = FileSystems.newFileSystem(URI.create("jar:" + runFile.toURI().toString()), env);    
 }

 private void addToZip(String filename) throws IOException {
    Path externalTxtFile = Paths.get(filename).toAbsolutePath();
    Path pathInZipfile = zipfs.getPath(filename.substring(filename.lastIndexOf("results"))); //all files to be stored have a common base folder, results/ in my case
    if (Files.isDirectory(externalTxtFile)) {
        Files.createDirectories(pathInZipfile);
        try (DirectoryStream<Path> ds = Files.newDirectoryStream(externalTxtFile)) {
            for (Path child : ds) {
                addToZip(child.normalize().toString()); //recursive call
            }
        }
    } else {
        // copy file to zip file
        Files.copy(externalTxtFile, pathInZipfile, StandardCopyOption.REPLACE_EXISTING);            
    }
 }

0
public static void zipFromTxt(String zipFilePath, String txtFilePath) {
    Assert.notNull(zipFilePath, "Zip file path is required");
    Assert.notNull(txtFilePath, "Txt file path is required");
    zipFromTxt(new File(zipFilePath), new File(txtFilePath));
}

public static void zipFromTxt(File zipFile, File txtFile) {
    ZipOutputStream out = null;
    FileInputStream in = null;
    try {
        Assert.notNull(zipFile, "Zip file is required");
        Assert.notNull(txtFile, "Txt file is required");
        out = new ZipOutputStream(new FileOutputStream(zipFile));
        in = new FileInputStream(txtFile);
        out.putNextEntry(new ZipEntry(txtFile.getName()));
        int len;
        byte[] buffer = new byte[1024];
        while ((len = in.read(buffer)) > 0) {
            out.write(buffer, 0, len);
            out.flush();
        }
    } catch (Exception e) {
        log.info("Zip from txt occur error,Detail message:{}", e.toString());
    } finally {
        try {
            if (in != null) in.close();
            if (out != null) {
                out.closeEntry();
                out.close();
            }
        } catch (Exception e) {
            log.info("Zip from txt close error,Detail message:{}", e.toString());
        }
    }
}

0

주어 exportPathqueryResults문자열 변수로, 다음 블록은 생성 results.zip에서 파일 exportPath및 콘텐츠를 쓰는 queryResultsA를 results.txt압축 내부 파일.

URI uri = URI.create("jar:file:" + exportPath + "/results.zip");
Map<String, String> env = Collections.singletonMap("create", "true");

try (FileSystem zipfs = FileSystems.newFileSystem(uri, env)) {
  Path filePath = zipfs.getPath("/results.txt");
  byte[] fileContent = queryResults.getBytes();

  Files.write(filePath, fileContent, StandardOpenOption.CREATE);
}

0

Jeka https://jeka.dev JkPathTree를 사용하면 매우 간단합니다.

Path wholeDirToZip = Paths.get("dir/to/zip");
Path zipFile = Paths.get("file.zip");
JkPathTree.of(wholeDirToZip).zipTo(zipFile);

0

사용하여 또 다른 옵션이 있습니다 zip4jhttps://github.com/srikanth-lingala/zip4j은

단일 파일이 포함 된 zip 파일 작성 / 기존 zip에 단일 파일 추가

new ZipFile("filename.zip").addFile("filename.ext"); 또는

new ZipFile("filename.zip").addFile(new File("filename.ext"));

여러 파일로 zip 파일 작성 / 기존 zip에 여러 파일 추가

new ZipFile("filename.zip").addFiles(Arrays.asList(new File("first_file"), new File("second_file")));

폴더를 추가하여 zip 파일 작성 / 기존 zip에 폴더 추가

new ZipFile("filename.zip").addFolder(new File("/user/myuser/folder_to_add"));

스트림에서 zip 파일 만들기 / 기존 zip에 스트림 추가 new ZipFile("filename.zip").addStream(inputStream, new ZipParameters());

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.