Java 执行脚本命令

Java 执行脚本命令,第1张

 /**
     * 执行脚本
     * @param command 命令   /scada/reboot.sh 
     * @param targetDir 执行目录 /scada/command
     * @param nodeName 对象名  参数
     * @throws Exception 读取命令执行结果异常
     */
    public  void runScript(String message)  {
    	
    	String command="/scada/reboot.sh";
    	String nodeName="sec-modbus-master";
    	try {
    		

    		String cmd = String.format("%s %s %s", command, nodeName, targetDir);
            Process process = Runtime.getRuntime().exec(cmd);
            InputStream stdin = process.getInputStream();
            InputStreamReader isr = new InputStreamReader(stdin);
            BufferedReader br = new BufferedReader(isr);
            String line;
            while ((line = br.readLine()) != null) {
            	logger.info(line);
            }
            process.destroy();
		} catch (Exception e) {
			logger.error("重启程序指令报错"+e.getMessage());
		}
        
    }

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/917587.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-16
下一篇 2022-05-16

发表评论

登录后才能评论

评论列表(0条)

保存