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

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

具体代码:


String command =
       "\"C:\\Program Files\\7-Zip\\7z\" x -y"
       + " -o"+destDir
       + "   "+zipFile;
Process process = Runtime.getRuntime().exec(command);
目录
相关文章
|
8月前
|
前端开发 Java
Java Process类Runtime.getRuntime().exec() 执行bat脚本程序
Java Process类Runtime.getRuntime().exec() 执行bat脚本程序
483 0
执行 `s local invoke` 命令时,如果出现报错
执行 `s local invoke` 命令时,如果出现报错
70 1
|
Unix Java Linux
Runtime.exec方法之获取process id
Runtime.exec方法之获取process id
228 0
|
安全 Java
高并发编程-Runtime.getRuntime().addShutdownHook为自己的应用添加hook
高并发编程-Runtime.getRuntime().addShutdownHook为自己的应用添加hook
139 0
|
Java Shell Linux
java 调用外部程序(Runtime.getRuntime().exec)
java 调用外部程序(Runtime.getRuntime().exec)
1064 0
java 调用外部程序(Runtime.getRuntime().exec)
|
持续交付 开发工具 git
【RT-Thread env 工具安装】
【RT-Thread env 工具安装】
214 0
java.io.IOException: Cannot run program “del“: CreateProcess error=2, 系统找不到指定的文件。
java.io.IOException: Cannot run program “del“: CreateProcess error=2, 系统找不到指定的文件。
512 0
Runtime.getRuntime().exec()如何调用7z解压文件
Runtime.getRuntime().exec()如何调用7z解压文件
129 0
|
分布式计算 Java Hadoop
java.io.IOException: Could not locate executable null\bin\winutils.exe in the Hadoop binaries.
在Win7系统Intellij开发工具中调试Spark读取Hbase。运行直接报异常 java.io.IOException: Could not locate executable null\bin\winutils.
2940 0