Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize ZIP Compression and decompression by Java

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

Java how to achieve ZIP compression and decompression, many novices are not very clear about this, in order to help you solve this problem, the following editor will explain in detail for you, people with this need can come to learn, I hope you can gain something.

The program realizes ZIP compression. Divided into two parts: compression (compression) and decompression (decompression)

General functions include the use of polymorphic, recursive and other JAVA core technologies, which can compress and decompress a single file and any cascading folder. You need to customize the source input path and the target output path in your code.

Package com.han; import java.io.*; import java.util.zip.*; / * program implements ZIP compression. It is divided into two parts: * compression and decompression *

* rough features include the use of polymorphic, recursive and other JAVA core technologies, which can compress and decompress individual files and arbitrary cascading folders. * you need to customize the source input path and destination output path in the code. *

* in this code, the compressed part is implemented; the decompressed part can be found in the decompression section of this package. * @ author HAN * * / public class CopyOfMyZipCompressing {private int kryp1; / / define the recursive number variable public CopyOfMyZipCompressing () {/ / TODO Auto-generated constructor stub} public static void main (String [] args) {/ / TODO Auto-generated method stub long startTime=System.currentTimeMillis (); CopyOfMyZipCompressing book=new CopyOfMyZipCompressing () Try {book.zip ("C:\\ Users\\ HAN\\ Desktop\\ stock\\ SpectreCompressed.zip", / / custom zip output path new File ("C:\\ Users\\ HAN\\ Desktop\\ CombinedSpectres.txt")) / / Custom source input path, that is, the file or folder to be compressed} catch (Exception e) {/ / TODO Auto-generated catch block e.printStackTrace ();} long endTime=System.currentTimeMillis (); System.out.println ("time spent:" + (endTime-startTime) + "ms") } private void zip (String zipFileName, File inputFile) throws Exception {System.out.println ("compressing..."); ZipOutputStream out=new ZipOutputStream (new FileOutputStream (zipFileName)); BufferedOutputStream bo=new BufferedOutputStream (out); zip (out,inputFile, "/" + inputFile.getName (), bo); bo.close (); out.close () / / output stream closes System.out.println ("Compression complete");} private void zip (ZipOutputStream out, File f, String base, BufferedOutputStream bo) throws Exception {/ / method overloads if (f.isDirectory ()) {File [] fl=f.listFiles (); for (int iCompression 0)

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report