java shell解压命令是什么_CentOS之——安装rar5.3并利用Java调用命令压缩/解压文件...

转载请注明出处:https://blog.csdn.net/l1028386804/article/details/79734667

一、安装支持库

yum install -y gcc gcc-c++ autoconf wget

二、安装RAR

1.下载rar源码包

wget http://www.rarlab.com/rar/rarLinux-x64-5.3.0.tar.gz

2.解压安装

tar -zxvf rarLinux-x64-5.3.0.tar.gz

cd rar

make && make install

/bin/cp -f rar_static /usr/local/bin/rar && /bin/cp -f rar_static /usr/local/bin/unrar

cd ..

rm -rf rar

三、简单使用

解压:rar x FileName.rar

压缩:rar a FileName.rar DirName

四、Java调用解压命令源码

/**

* RAR 5.0以上调用命令解压

* @author liuyazhuang

*

*/

public class RarToFile {

/*

* cmd 压缩与解压缩命令

*/

private static String rarCmd = "rar a ";

private static String unrarCmd = "rar x ";

/**

* 将1个文件压缩成RAR格式

* rarName 压缩后的压缩文件名(不包含后缀)

* fileName 需要压缩的文件名(必须包含路径)

* destDir 压缩后的压缩文件存放路径

*/

public static void RARFile(String rarName, String fileName, String destDir) {

rarCmd += destDir + rarName + ".rar " + fileName;

try {

Runtime rt = Runtime.getRuntime();

Process p = rt.exec(rarCmd);

}catch(Exception e) {

System.out.println(e.getMessage());

}

}

/**

* 将1个RAR文件解压

* rarFileName 需要解压的RAR文件(必须包含路径信息以及后缀)

* destDir 解压后的文件放置目录

*/

public static void unRARFile(String rarFileName, String destDir) {

unrarCmd += rarFileName + " " + destDir;

try {

Runtime rt = Runtime.getRuntime();

Process p = rt.exec(unrarCmd);

} catch (Exception e) {

System.out.println(e.getMessage());

}

}

}

如果上述Java源码在运行的时候出现异常,则可参考如下Java代码调用解压命令解压

public void executeNewFlow() {

Runtime run = Runtime.getRuntime();

File wd = new File("/bin");

System.out.println(wd);

Process proc = null;

try {

proc = run.exec("/bin/bash", null, wd);

} catch (IOException e) {

e.printStackTrace();

}

if (proc != null) {

BufferedReader in = new BufferedReader(new InputStreamReader(proc.getInputStream()));

PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(proc.getOutputStream())), true);

out.println("cd /home/test");

out.println("rar x test.rar");

out.println("exit");//这个命令必须执行,否则in流不结束。

try {

String line;

while ((line = in.readLine()) != null) {

System.out.println(line);

}

proc.waitFor();

in.close();

out.close();

proc.destroy();

} catch (Exception e) {

e.printStackTrace();

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值