Tagged Questions
0
votes
2answers
69 views
Expanding files with 7zip
I am trying to expand a zip file using 7zip but I keep getting the 7zip Usage printout.
The zip exist in c:\temp
The same command succeed in batch window :
C:\TEMP>7z x "tryThis.zip"
I tried ...
2
votes
1answer
246 views
J7zip on Android - Extracting From an Archive and Listing Contents
My previous question got closed as not constructive. I edited it there, but didn't see that it was closed ):
I'm writing an application that involves extracting 7z archives. There doesn't seem to be ...
0
votes
1answer
117 views
J7zip on Android - Extracting From an Archive [closed]
Moved this question to a new question since it was closed. I edited it, but didn't see it was closed yet.
Continue discussion here: J7zip on Android - Extracting From an Archive and Listing Contents
3
votes
2answers
273 views
Unzip error in Java
Hi I am quite new to zip format, and I used the Java's util implementation to unzip a file, However it throws a ZipException everytime I try to open the file. I checked to see if the file was ...
1
vote
0answers
63 views
Is there any way to keep compressed file extension using “SevenZip.LzmaAlone” class compression?
I'm working on big files compression using Java. It's mandatory (for me) to compress my files unto 7z files (LZMA compression).
To do that, I'm using the 7z Java SKD. I'm calling the ...
1
vote
2answers
680 views
7zip command line - Create executable jars
I have an executable .jar-File which works, but I want to add some files to the .jar-File with another program. My idea was to use the 7zip command line extension, but when I try to add something to ...
2
votes
2answers
1k views
Compressing & Decompressing 7z file in java
I want to compress a file into zip, rar and 7z format using java code. Also I want to decompress these files at a specified location.
Can anyone please tell me how to compress and decompress files ...
0
votes
0answers
160 views
7-Zip & Java - how do I get the value of percentage completed?
I wrote a Java code that sends files for compression using LzmaAlone.java.
Sending one file is not a problem, but for sending numerous files I need some confirmation that the previous file finished ...
3
votes
1answer
253 views
Empty folder is created in 7Zip while compressing file in java
I am using Java compression API (java.util.ZIP package) to compress the files. It works well. However, I have below small issue.
Suppose my input file is C:\temp\text.txt and my output (compressed) ...
-2
votes
3answers
840 views
How to read large text files - java [closed]
I am making a game, but to install it, it requires 7zip to unpack the files, so I have included the 7zip installer. I have created a JFrame with a JTextArea in it to input the 7zip icense, but I cant ...
0
votes
2answers
329 views
Launching a command line application that launches another command line application never responds
When I run the following command from command line, I can run 7-zip as a remote user and extract a file to a network share:
C:\PsExec.exe -u username -p password "C:\7z.exe" x -y ...
0
votes
1answer
276 views
Stream through files in 7-zip archive
I'd like to write a Python or Java app to iterate over all of the many small files in a 7-zip (.7z) archive. Is there a convenient way to do this in a streaming and efficient fashion, i.e. without ...
1
vote
1answer
676 views
Java - Running 7zip
I have an application that uses 7zip in order to unzip a file. The code I use is the following:
Runtime prog = Runtime.getRuntime();
Process proc = ...
1
vote
0answers
33 views
unzipping self-extracting 7-zip exe files in java [duplicate]
Possible Duplicate:
How can I read from a Winzip self-extracting (exe) zip file in Java?
I need to unzip self-extracting 7-zip exe files in java.
I tried looking through many posts which ...
0
votes
1answer
1k views
Using 7Zip to make a WAR file
I know you can take a WAR file or EAR and unzip it using 7Zip or other archiving utilities. But does this process work in reverse? Can 7Zip create a valid WAR artifact using it's GUI manager? EAR?
0
votes
3answers
248 views
Error loading library jar
I compressed my library jar files using 7-zip with ultra compression for smaller size. But after that when i use it in Netbeans my Swing app doesn't show my library jar loaded. Java cannot access the ...
0
votes
1answer
203 views
Zip - Add files and folders that are newer, remove old ones
I want to do the following on a Windows and Linux machine :
Zip several folders in an automated process
Add new files to archive, remove old ones.
I've experimented with .bat and .sh scripts using ...
5
votes
6answers
4k views
Any good tool for browsing archives(Ear,War, Jar) on OSX
On Linux i can use file-roller and open an browse the content of an EAR file without manually open it, can even dig into contained WAR file and within that JAR files quickly.
This is another of those ...
4
votes
2answers
4k views
how to open java program generated zip file using UTF-8 encoding
Our product has an export function, which uses ZipOutputStream to zip a directory; however, when you try to zip a directory that contains file names with Chinese or Japanese character the export ...
3
votes
2answers
8k views
How to use LZMA SDK to compress/decompress in Java
http://www.7-zip.org/sdk.html
This site provide a LZMA SDK for compress/decompress files, I would like to give it a shot but I am lost.
Anyone got experience on this? Or a tutorial? Thanks.
0
votes
1answer
803 views
7Zip does not exit after processing large zip file compression
I am writing a java program on windows platform. I need to compress certain files into a zip archive. I am using ProcessBuilder to start a new 7zip process:
ProcessBuilder processBuilder = new ...
1
vote
1answer
1k views
Implementation of 7Zip in JAVA
I have downloaded the LZMA SDK from the 7zip website but to my disappointment it does only support compression and decompression and does not support AES crypto. Does anyone know if there is any ...
3
votes
1answer
3k views
Decompress a 7zip archive with multiple files & directories in Java
I want to decompress a 7zip/lzma archive with multiple files & directories in Java. I tried to use the official 7zip SDK, but I failed, as my programming skills are not that advanced for this ...
4
votes
1answer
12k views
How to unzip a 7zip archive in Android?
The problem is probably quite simple for some of you:
I have a 7zip archive which contains some hundred files separated into different directories. The target is to download it from a FTP server and ...