Hi, Can Java zip & unzip the any files(also cab files) Thanks Angela
Susan Hoover
Ranch Hand
Joined: Jan 04, 2001
Posts: 64
posted
0
Angela, It's not quite clear from your question whether you mean the classes in the java.util.jar and java.util.zip packages, or the jar tool that comes with the JDK. Could you please elaborate?
Nitin Shivaram
Ranch Hand
Joined: Jan 17, 2001
Posts: 71
posted
0
Hi, If your questions pertains to opening, reading and closing a zip file, then you could use "java.util.zip.ZipFile".
------------------ Nitin S
Nitin S<br />Sun Certified Java Programmer for the Java 2 platform.<br />Tekmetrics Certified Java Programmer For the Java 2 Platform.
Rahul Mahindrakar
Ranch Hand
Joined: Jul 28, 2000
Posts: 1831
posted
0
The following demonstrates reading from a ZIP file, listing all the files in the zip and displaying the contents of the first file in the zip. JAR file reading is similar, just with different classes and having a manifest.
import java.io.*; import java.util.Vector; import java.util.zip.*; class test { public static void ZipFile(String cfgFile) { ZipOutputStream a_ZipOutStream = null; File outFilename = new File(cfgFile); int len; try{ // Create a zip output stream a_ZipOutStream = new ZipOutputStream( new FileOutputStream(outFilename.getName()+".zip")); byte[] buf = new byte[1024]; File oneFile = new File(cfgFile); if(oneFile.isFile()){ ZipEntry ze = new ZipEntry(cfgFile); FileInputStream is = new FileInputStream(oneFile); len = is.read(buf); a_ZipOutStream.putNextEntry(ze); ze.setTime(oneFile.lastModified()); a_ZipOutStream.write(buf,0,len); a_ZipOutStream.closeEntry(); System.out.println(ze.getName() +" (" + ze.getCompressedSize()*100/ze.getSize() +"%)"); is.close(); } } catch(IOException ioe) { } finally { if(a_ZipOutStream != null) { try{ a_ZipOutStream.close(); } catch(IOException ioe) { ioe.printStackTrace(); } a_ZipOutStream = null; } } }
public static void main (String agrs[]) { ZipFile("test.java"); }
-Rashmi<br />Try until u succeed
VIJAY Yadlapati
Ranch Hand
Joined: Aug 04, 2003
Posts: 175
posted
0
If you want to pack and unpack what you do with WinZip with Java, you can cpmfortably do it with java.util.jar and java.util.zip packages, or with Jar.exe. As jar and zip use the sasme algorithm for compression, there will be no difference between .jar and .zip files.