首页 > 编程语言 > 详细

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

时间:2016-10-26 19:15:40      阅读:145      评论:0      收藏:0      [点我收藏+]
 // 用法: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脚本

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!