zoukankan      html  css  js  c++  java
  • Java执行shell脚本并返回结果两种方法的完整代码

    Java执行shell脚本并返回结果两种方法的完整代码

    简单的是直接传入String字符串,这种不能执行echo 或者需要调用其他进程的命令(比如调用postfix发送邮件命令就不起作用)

    执行复杂的shell建议使用String[]方式传递(对外可以封装后也传入String字符串)。

    /**
         * 运行shell脚本
         * @param shell 需要运行的shell脚本
         */
        public static void execShell(String shell){
            try {
                Runtime.getRuntime().exec(shell);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
        
        /**
         * 运行shell脚本 new String[]方式
         * @param shell 需要运行的shell脚本
         */
        public static void execShellBin(String shell){
            try {
                Runtime.getRuntime().exec(new String[]{"/bin/sh","-c",shell},null,null);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
     
     
        /**
         * 运行shell并获得结果,注意:如果sh中含有awk,一定要按new String[]{"/bin/sh","-c",shStr}写,才可以获得流
         * 
         * @param shStr
         *            需要执行的shell
         * @return
         */
        public static List<String> runShell(String shStr) {
            List<String> strList = new ArrayList<String>();
            try {
                Process process = Runtime.getRuntime().exec(new String[]{"/bin/sh","-c",shStr},null,null);
                InputStreamReader ir = new InputStreamReader(process.getInputStream());
                LineNumberReader input = new LineNumberReader(ir);
                String line;
                process.waitFor();
                while ((line = input.readLine()) != null){
                    strList.add(line);
                }
            } catch (Exception e) {
                e.printStackTrace();
            }
            return strList;
        }
  • 相关阅读:
    webMagic学习笔记 主页
    maven 听视频笔记
    idea如何做到多模块开发项目 收藏整理
    JAVA 增删改查接口命名规范(dao层与 service 层
    mybatis 自学笔记
    nginx学习主页导航
    用 async/await 来处理异步
    若依:SysUserMapper.xml 分析
    idea 创建多模块项目子模块为灰色
    Maven多模块开发遇到的错误 -- Maven的子模块变成灰色
  • 原文地址:https://www.cnblogs.com/zdz8207/p/java-linux-shell.html
Copyright © 2011-2022 走看看