用java实现文件夹的打包和解包(解包时按原有的目录结构)

给个链接或者写个大概的过程也行越详细越好。... 给个链接或者写个大概的过程也行 越详细越好。 展开
 我来答
来自清华镇害羞的荷草
2008-09-27 · TA获得超过1.3万个赞
知道大有可为答主
回答量:4141
采纳率:0%
帮助的人:3779万
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友32b957015
2008-09-27 · TA获得超过762个赞
知道小有建树答主
回答量:1193
采纳率:0%
帮助的人:1237万
展开全部
import java.io.*;
import java.util.*;
import java.util.zip.*;

public class Unzip {

public static final void copyInputStream(InputStream in, OutputStream out)
throws IOException
{
byte[] buffer = new byte[1024];
int len;

while((len = in.read(buffer)) >= 0)
out.write(buffer, 0, len);

in.close();
out.close();
}

public static final void main(String[] args) {
Enumeration entries;
ZipFile zipFile;

if(args.length != 1) {
System.err.println("Usage: Unzip zipfile");
return;
}

try {
zipFile = new ZipFile(args[0]);

entries = zipFile.entries();

while(entries.hasMoreElements()) {
ZipEntry entry = (ZipEntry)entries.nextElement();

if(entry.isDirectory()) {
// Assume directories are stored parents first then children.
System.err.println("Extracting directory: " + entry.getName());
// This is not robust, just for demonstration purposes.
(new File(entry.getName())).mkdir();
continue;
}

System.err.println("Extracting file: " + entry.getName());
copyInputStream(zipFile.getInputStream(entry),
new BufferedOutputStream(new FileOutputStream(entry.getName())));
}

zipFile.close();
} catch (IOException ioe) {
System.err.println("Unhandled exception:");
ioe.printStackTrace();
return;
}
}

}

// These are the files to include in the ZIP file
String[] source = new String[]{"source1", "source2"};

// Create a buffer for reading the files
byte[] buf = new byte[1024];

try {
// Create the ZIP file
String target = "target.zip";
ZipOutputStream out = new ZipOutputStream(new FileOutputStream(target));

// Compress the files
for (int i=0; i<source.length; i++) {
FileInputStream in = new FileInputStream(source[i]);

// Add ZIP entry to output stream.
out.putNextEntry(new ZipEntry(source[i]));

// Transfer bytes from the file to the ZIP file
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}

// Complete the entry
out.closeEntry();
in.close();
}

// Complete the ZIP file
out.close();
} catch (IOException e) {
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
草薙在
2008-09-27 · TA获得超过4795个赞
知道大有可为答主
回答量:6187
采纳率:50%
帮助的人:6324万
展开全部
你可以使用第三方zip类库来做这个工作

可以看看apache的commons项目
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
cclzc520
2008-10-01 · TA获得超过608个赞
知道答主
回答量:165
采纳率:0%
帮助的人:121万
展开全部
在命令提示符下 键入命令jar -help
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式