Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7912145
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T13:31:11+00:00 2026-06-03T13:31:11+00:00

I would like to create a zip file with Commons VFS2 library. I know

  • 0

I would like to create a zip file with Commons VFS2 library. I know how to copy a file when using file prefix but for zip files write and read are not implemented.

fileSystemManager.resolveFile("path comes here")-method fails when I try path zip:/some/file.zip when file.zip is an non-existing zip-file. I can resolve an existing file but non-existing new file fails.

So how to create that new zip file then? I cannot use createFile() because it is not supported and I cannot create the FileObject before this is to be called.

The normal way is to create FileObject with that resolveFile and then call createFile for the object.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T13:31:12+00:00Added an answer on June 3, 2026 at 1:31 pm

    The answer to my need is the following code snippet:

    // Create access to zip.
    FileSystemManager fsManager = VFS.getManager();
    FileObject zipFile = fsManager.resolveFile("file:/path/to/the/file.zip");
    zipFile.createFile();
    ZipOutputStream zos = new ZipOutputStream(zipFile.getContent().getOutputStream());
    
    // add entry/-ies.
    ZipEntry zipEntry = new ZipEntry("name_inside_zip");
    FileObject entryFile = fsManager.resolveFile("file:/path/to/the/sourcefile.txt");
    InputStream is = entryFile.getContent().getInputStream();
    
    // Write to zip.
    byte[] buf = new byte[1024];
    zos.putNextEntry(zipEntry);
    for (int readNum; (readNum = is.read(buf)) != -1;) {
       zos.write(buf, 0, readNum);
    }
    

    After this you need to close the streams and it works!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to create a zip file from files located on the sd
I would like to create a zip file in memory using a ZipArchive (or
I would like to create a zip file for my NetBeans project which has
I would like to create a zip file on the fly to serve to
I would like to create a custom document library where I use the standard
I would like to create an Invoice in HTML instead of a PDF-file. And
I would like to compress a directory using 7-Zip and then download it to
I would like to create a file format for my app like Quake, OO,
I am trying to write a tool to create a zip file containing all
I would like to create a ZIP distributable for my java application with Maven

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.