Zipファイルの圧縮・解凍にantを使用する
2022-02-19 23:25:32
javaAntを使ってZipファイルの圧縮と解凍を実装する。
単一ファイルのZipファイルへの圧縮、複数ファイルのZipファイルへの圧縮。
大容量ファイルの圧縮が可能。
ant.jarファイルを使用する必要があるので、libディレクトリに置いてください。
ant.jarをダウンロードします。 http://download.csdn.net/detail/xinxin19881112/8906157
Zip.java
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.util.zip.ZipOutputStream;
import org.apache.tools.zip.ZipEntry;
ZipEntry; /**
* ZIP manipulation tool class
*/
public class Zip {
/**
* Compress the list of files to a ZIP file
* @param zipFilename ZIP file to be compressed to
* @param paths list of files, multiple parameters
* @throws Exception
*/
public static void compress(String zipFilename, String... paths)
throws Exception {
compress(new FileOutputStream(zipFilename), paths);
}
/**
* Compress the list of files to the output stream
* @param os the stream to compress to
* @param paths List of files, multiple parameters
* @throws Exception
*/
public static void compress(OutputStream os, String... paths)
throws Exception {
ZipOutputStream zos = new ZipOutputStream(os);
for (String path : paths) {
if (path.equals(""))
continue;
File file = new java.io;
if (file.exists()) {
if (file.isDirectory()) {
zipDirectory(zos, file.getPath(), file.getName()
+ File.separator);
} else {
zipFile(zos, file.getPath(), "");
}
}
}
zos.close();
}
private static void zipDirectory(ZipOutputStream zos, String dirName,
String basePath) throws Exception {
File dir = new File(dirName);
if (dir.exists()) {
File files[] = dir.listFiles();
if (files.length > 0) {
for (File file : files) {
if (file.isDirectory()) {
zipDirectory(zos, file.getPath(), basePath
+ file.getName().substring(
file.getName().lastIndexOf(
File.separator) + 1)
+ File.separator);
} else
zipFile(zos, file.getPath(), basePath);
}
} else {
ZipEntry ze = new ZipEntry(basePath);
zos.putNextEntry(ze);
}
}
}
private static void zipFile(ZipOutputStream zos, String filename,
String basePath) throws Exception {
File file = new File(filename);
if (file.exists()) {
FileInputStream fis = new FileInputStream(filename);
ZipEntry ze = new ZipEntry(basePath + file.getName());
zos.putNextEntry(ze);
byte[] buffer = new byte[8192];
int count = 0;
while ((count = fis.read(buffer)) > 0) {
zos.write(buffer, 0, count);
}
fis.close();
}
}
}
TestCompress.java
import java.io.FileOutputStream;
import com.xx.commmon.Zip;
/**
* Compressed file test
*/
public class TestCompress {
public static void main(String[] args) {
// List of files to be compressed
String path01 = "E:\\\download\\cn_windows_8_x86_dvd_915414.iso";
String path02 = "e:\\\PPT Template_V0.1.potx";
try {
FileOutputStream os = new FileOutputStream("e:\\\test.zip"); // output ZIP file stream
Zip.compress(os, path01);
} catch (Exception e) {
e.printStackTrace();
}
}
}
TestEctractZip.java
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.ArrayList;
import java.util.zip.ZipEntry;
ZipInputStream; import java.util.zip;
/**
* Decompression test
*/
public class TestEctractZip {
@SuppressWarnings( { "unchecked", "static-access" })
public static void main(String[] args) {
TestEctractZip z = new TestEctractZip();
ArrayList<String> a = z.Ectract("C:\\a.zip", "C:\tmp\\\\"); // return the list of files extracted
for(String s : a){
System.out.println(s);
}
}
/**
* Decompress
* @param sZipPathFile The file to decompress
* @param sDestPath Unzip to a folder
* @return
*/
@SuppressWarnings("unchecked")
public static ArrayList Ectract(String sZipPathFile, String sDestPath) {
ArrayList<String> allFileName = new ArrayList<String>();
try {
// first specify the location and file name of the compressed file and create a FileInputStream object
FileInputStream fins = new FileInputStream(sZipPathFile);
// Pass fins into the ZipInputStream
ZipInputStream zins = new ZipInputStream(fins);
ZipEntry ze = null;
byte[] ch = new byte[256];
while ((ze = zins.getNextEntry()) ! = null) {
File zfile = new File(sDestPath + ze.getName());
//File zfile = new File(sDestPath +File.separator+ ze.getName());
File fpath = new File(zfile.getParentFile().getPath());
if (ze.isDirectory()) {
if (!zfile.exists())
zfile.mkdirs();
zins.closeEntry();
} else {
if (!fpath.exists())
fpath.mkdirs();
FileOutputStream fouts = new FileOutputStream(zfile);
int i;
allFileName.add(zfile.getAbsolutePath());
while ((i = zins.read(ch)) ! = -1)
fouts.write(ch, 0, i);
zins.closeEntry();
fouts.close();
}
}
fins.close();
zins.close();
} catch (Exception e) {
System.err.println("Extract error:" + e.getMessage());
}
return allFileName;
}
}
New New: http://blog.csdn.net/xinxin19881112/article/details/46913931
関連
-
undefined[sonar] sonar:デフォルトのスキャンルール
-
アクセス制限です。タイプ 'Application' は API ではない(必要なライブラリに制限がある)。
-
Git Pull Failed マージされていないファイルがあるため、Pull できません。
-
-bash: java: コマンドが見つからない 解決方法
-
java.sql.SQLException: 結果セットの開始前
-
X11 DISPLAY変数が設定されていない」問題の解決方法
-
maven レポート エラー 解決不可能な親POM
-
Junitのユニットテストエラー
-
java1.8ソースコード ArrayListソースコード解釈
-
Prologでは、コンテンツは許可されていません。
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
NullPointerException - java.lang.
-
Java の switch case 文で必要な定数式の問題の解決法
-
スレッド "main" での例外 java.lang.ArrayIndexOutOfBoundsException:5 エラー
-
ajax コミット リソースの読み込みに失敗しました: サーバーはステータス 400 で応答しました ()
-
List list = new ArrayList(); Error: ArrayList は型に解決できません。
-
WeChat小プログラム Bluetooth通信 Bluetoothモジュールデモ
-
FTPサーバ機能のJava実装
-
コレクション - PriorityQueueソースコード解析
-
Java上級(XLVI) ArrayList、Vector、LinkedListの類似点と相違点を簡単に説明できる。
-
MySQLIntegrityConstraintViolationException、解決方法