我正在Windows平台上编写一个java程序。我需要将某些文件压缩成zip存档。我正在使用ProcessBuilder启动一个新的7zip进程:
ProcessBuilder processBuilder = new ProcessBuilder("7Z","a",zipPath,filePath);
Process p = processBuilder.start();
p.waitFor();
问题是7zip进程在完成后永远不会退出。它确实创建了所需的zip文件,但之后只是挂在那里。这意味着waitFor()
调用永远不会返回,我的程序会被卡住。请建议修复或解决。
答案 0 :(得分:2)
这是我最终做的事情。
我无法设置环境变量,所以我必须为7zip设置c:路径。
public void zipMultipleFiles (List<file> Files, String destinationFile){
String zipApplication = "\"C:\\Program Files\7Zip\7zip.exe\" a -t7z";
String CommandToZip = zipApplication + " ";
for (File file : files){
CommandToZip = CommandToZip + "\"" + file.getAbsolutePath() + "\" ";
}
CommandToZip = CommandToZip + " -mmt -mx5 -aoa";
runCommand(CommandToZip);
}
public void runCommand(String commandToRun) throws RuntimeException{
Process p = null;
try{
p = Runtime.getRuntime().exec(commandToRun);
String response = convertStreamToStr(p.getInputStream());
p.waitFor();
} catch(Exception e){
throw new RuntimeException("Illegal Command ZippingFile");
} finally {
if(p = null){
throw new RuntimeException("Illegal Command Zipping File");
}
if (p.exitValue() != 0){
throw new Runtime("Failed to Zip File - unknown error");
}
}
}
可以在这里找到转换为字符串函数,这是我用作参考的内容。 http://singztechmusings.wordpress.com/2011/06/21/getting-started-with-javas-processbuilder-a-sample-utility-class-to-interact-with-linux-from-java-program/