怎样在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脚本的主要内容,如果未能解决你的问题,请参考以下文章