Skip to content Skip to sidebar Skip to footer

Android: 7zip A Folder Using Apache Commons Compress

I have included the following in my .gradle: compile 'org.apache.commons:commons-compress:1.8' I want to 7zip a folder. I have tried SevenZOutputFile sevenZOutput = new SevenZOutp

Solution 1:

sevenZOutput.write(contentOfEntry);

replace to

sevenZOutput.write(Files.toByteArray(fileToArchive));

Post a Comment for "Android: 7zip A Folder Using Apache Commons Compress"