java 关于解压rar文件 代码有点问题 帮改正--请进

llddy 2009-06-16 04:17:33
问题:目前这个代码执行第一次的时候就可以解压rar文件,但是第二次就无效了。测试可以执行一次后servlet操作,删除解压后解压后的文件,在执行,rar文件就不解压了。我用的是tomcat服务器。
文件1:UnrarServlet
代码


package com.jh.upload.servlet;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipFile;


@SuppressWarnings("serial")
public class UnrarServlet extends HttpServlet {
private static String unrarCmd = "C:\\Program Files\\WinRAR\\unrar x";

public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doPost(request, response);
}

@SuppressWarnings( { "static-access", "deprecation" })
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
request.setCharacterEncoding("gbk");
response.setContentType("text/html;charset=gbk");
// 设置字符编码为UTF-8, 这样支持汉字显示
response.setCharacterEncoding("gbk");

//文件名 传进来或者取过来
String file = "系统管理.rar";
PrintWriter out = response.getWriter();

String rarFileName = request.getRealPath("/test") + "\\" + file;
String destDir = request.getRealPath("/test");

File f = new File(rarFileName);
if ((!f.exists()) && (f.length() <= 0)) {
out.println("要解压的文件不存在!<p />");
out.println("<a href='MyJsp.jsp' >返回</a>");
return;
}

unrarCmd += " " + rarFileName + " " + destDir;
try {
Runtime rt = Runtime.getRuntime();
Process p = rt.exec(unrarCmd);


StreamGobbler errorGobbler = new StreamGobbler(p.getErrorStream(),"ERROR");
errorGobbler.start();
StreamGobbler outGobbler = new StreamGobbler(p.getInputStream(),"STDOUT");
// kick off stdout
outGobbler.start();
p.waitFor();

System.out.println("进程:--"+p.exitValue());
} catch (Exception e) {
System.out.println(e.getMessage());

}

//判断目录是否存在
String fileName = file.substring(0, file.lastIndexOf("."));

File filePath = new File(destDir + "\\" + fileName);

if (filePath.isDirectory()) {
out.println("<p />解压成功!");
} else {
out.println("<p />解压失败,请手工解压!");
}

out.println("<p /><a href='MyJsp.jsp' >返回</a>");
return;

}

}



文件2:StreamGobbler.java
[code=Java]

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.PrintWriter;

public class StreamGobbler extends Thread {
InputStream is;
String type;
OutputStream os;

StreamGobbler(InputStream is, String type) {
this(is, type, null);
}

StreamGobbler(InputStream is, String type, OutputStream redirect) {
this.is = is;
this.type = type;
this.os = redirect;
}

public void run() {
try {
PrintWriter pw = null;
if (os != null)
pw = new PrintWriter(os);

InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
String line = null;
while ((line = br.readLine()) != null) {
if (pw != null)
pw.println(line);
System.out.println(type + ">" + line);
}
if (pw != null)
pw.flush();
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
}
...全文
395 9 打赏 收藏 转发到动态 举报
写回复
用AI写文章
9 条回复
切换为时间正序
请发表友善的回复…
发表回复
ycnanevol 2009-06-17
  • 打赏
  • 举报
回复
没盘过,帮顶
llddy 2009-06-17
  • 打赏
  • 举报
回复
实现方式如下。
需要的jar包是:java-unrar


public class Test {

/**
* 解压缩rar文件
*
* @param rarFileName
* @param extPlace
*/
public static boolean decompressionRarFiles(String rarFileName, String extPlace) {
boolean flag = false;
Archive archive = null;
File out = null;
File file = null;
File dir = null;
FileOutputStream os = null;
FileHeader fh = null;
String path, dirPath = "";
try {
file = new File(rarFileName);
archive = new Archive(file);
} catch (RarException e1) {
e1.printStackTrace();
} catch (IOException e1) {
e1.printStackTrace();
} finally {
if (file != null) {
file = null;
}
}
if (archive != null) {
try {
fh = archive.nextFileHeader();
while (fh != null) {
path = (extPlace + fh.getFileNameString().trim()).replaceAll("\\\\", "/");
int end = path.lastIndexOf("/");
if (end != -1) {
dirPath = path.substring(0, end);
}
try {
dir = new File(dirPath);
if (!dir.exists()) {
dir.mkdirs();
}
} catch (RuntimeException e1) {
e1.printStackTrace();
} finally {
if (dir != null) {
dir = null;
}
}
if (fh.isDirectory()) {
fh = archive.nextFileHeader();
continue;
}
out = new File(extPlace + fh.getFileNameString().trim());
try {
os = new FileOutputStream(out);
archive.extractFile(fh, os);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (RarException e) {
e.printStackTrace();
} finally {
if (os != null) {
try {
os.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (out != null) {
out = null;
}
}
fh = archive.nextFileHeader();
}
} catch (RuntimeException e) {
e.printStackTrace();
} finally {
fh = null;
if (archive != null) {
try {
archive.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
flag = true;
}
return flag;
}

public static void main(String[] args) {
String absPath="D:\\apache-tomcat-6.0.20\\webapps\\upload\\test\\系统管理.rar"; //文件绝对目录
String toPath ="D:\\apache-tomcat-6.0.20\\webapps\\upload\\test\\"; //文件目录
boolean flag = new Test().decompressionRarFiles(absPath, toPath);
System.out.println("flag ---"+flag);

}
}
llddy 2009-06-17
  • 打赏
  • 举报
回复
没有知道的吗?
czp3158 2009-06-16
  • 打赏
  • 举报
回复
帮顶……小韦德 跟大韦德就没啥两样!哈……
llddy 2009-06-16
  • 打赏
  • 举报
回复
目标文件 指定是rar文件 要是zip就好处理了。
rar因为 不是开源的,私有密匙 所以只能调用 它自己的 rar解压程序
yanhan0615 2009-06-16
  • 打赏
  • 举报
回复
楼主可以debug看看停在那里啊。。。。
另:为什么不自己做Zip和UnZip,非要用外部进程呢。。。
llddy 2009-06-16
  • 打赏
  • 举报
回复
我尝试关闭了 也不行

Runtime rt = Runtime.getRuntime();
Process p = rt.exec(unrarCmd);


StreamGobbler errorGobbler = new StreamGobbler(p.getErrorStream(),"ERROR");
errorGobbler.start();
StreamGobbler outGobbler = new StreamGobbler(p.getInputStream(),"STDOUT");
// kick off stdout
outGobbler.start();
p.waitFor();
//这里
p.destroy();
System.out.println("进程:--"+p.exitValue());

Adebayor 2009-06-16
  • 打赏
  • 举报
回复
帮顶
一洽客服系统 2009-06-16
  • 打赏
  • 举报
回复
可能是进程没有结束吧。

62,615

社区成员

发帖
与我相关
我的任务
社区描述
Java 2 Standard Edition
社区管理员
  • Java SE
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧