码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2016-10-26 19:18:51      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:.sh   log   command   int   命令   java   调用   ack   mod   

 // 用法: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脚本

标签:.sh   log   command   int   命令   java   调用   ack   mod   

原文地址:http://www.cnblogs.com/beautiful-code/p/6001250.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!