class StreamConsumer extends Thread{ def inStream def buf public StreamConsumer(def input){ inStream = input buf = new StringBuffer() } public void run(){ def reader = new BufferedReader(new InputStreamReader(inStream)) reader.eachLine{ buf.append(it).append('/n')} } } class Exec{ static def doCommand(def cmd){ Process proc = Runtime.getRuntime().exec(cmd) def error = new StreamConsumer(proc.getErrorStream()) def input = new StreamConsumer(proc.getInputStream()) input.start() error.start() proc.waitFor() input.join() error.join() return [ "stdout":input.buf?.toString().trim(), "stderr":error.buf?.toString().trim(), ] } } def cmd = 'dir ' def result = Exec.doCommand(cmd); println result 具体的解释请参考 When Runtime.exec() won't http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html?page=3
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。