怎样在java代码中调用执行shell脚本

Posted 让编程成为一种习惯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样在java代码中调用执行shell脚本相关的知识,希望对你有一定的参考价值。

 // 用法:Runtime.getRuntime().exec("命令");
     
    String shpath="/test/test.sh";   //程序路径
    Process process =null;
    String command1 = “chmod 777 ” + shpath;
    try { 
      Runtime.getRuntime().exec(command1 ).waitFor(); 
    } catch (IOException e1) { 
        e1.printStackTrace(); 
    }catch (InterruptedException e) { 
         e.printStackTrace(); 
    }
 
 
    String var="201102";  /参数

 

以上是关于怎样在java代码中调用执行shell脚本的主要内容,如果未能解决你的问题,请参考以下文章

如何在java中执行shell脚本

怎么用java代码调用远程Linux上的shell脚本

java调用shell脚本,并得到shell脚本的返回值

java怎样调用maven打包命令

代码片段:Shell脚本实现重复执行和多进程

shell脚本怎么调用其他shell脚本