我是 java 新手.....我在 zip 文件夹中有 3 个文件,我正在使用它来提取它
String command = "cmd /c start cmd.exe /K \"jar -xvf record.zip\"";
Process ps= Runtime.getRuntime().exec(command);
在使用 jar -xvf 提取这些文件后,我需要将 record.zip 中存在的所有三个文件存储到一个字符串中
BufferedReader br=new BufferedReader(new InputStreamReader(ps.getInputStream()));
String temp = br.readLine();
while( temp != null ) { //!temp.equals(null)) {
output.write(temp);
temp = br.readLine();
}
output.close();
我试过这段代码,但它没有给我想要的结果....提前谢谢....