Runtime.getRuntime().exec()如何调用7z解压文件

Posted 柳鲲鹏

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Runtime.getRuntime().exec()如何调用7z解压文件相关的知识,希望对你有一定的参考价值。

具体代码:

String command =
       "\\"C:\\\\Program Files\\\\7-Zip\\\\7z\\" x -y"
       + " -o"+destDir
       + "   "+zipFile;
Process process = Runtime.getRuntime().exec(command);

以上是关于Runtime.getRuntime().exec()如何调用7z解压文件的主要内容,如果未能解决你的问题,请参考以下文章

Android Runtime.getRuntime().exec

如何与 Runtime.getRuntime().exec(command) 程序进行交互?

在循环中运行“Runtime.getRuntime()。exec()”

Runtime.getRuntime.exec()执行java进程失败

无法从 Java 进程(Runtime.getRuntime().exec() 或 ProcessBuilder)读取 InputStream

Runtime.getRuntime.exec()执行linux脚本导致程序卡死有关问题