当前位置:  开发笔记 > 编程语言 > 正文

如何从Groovy脚本重定向输出?

如何解决《如何从Groovy脚本重定向输出?》经验,为你挑选了1个好方法。

我想知道是否有任何方法可以更改我从Java代码执行的groovy脚本的默认输出(System.out).

这是Java代码:

public void exec(File file, OutputStream output) throws Exception {
    GroovyShell shell = new GroovyShell();
    shell.evaluate(file);
}

和样本groovy脚本:

def name='World'
println "Hello $name!"

目前,该方法的执行,评估编写"Hello World!"的脚本.到控制台(System.out).如何将输出重定向到作为参数传递的OutputStream?



1> jjchiw..:

使用Binding尝试此操作

public void exec(File file, OutputStream output) throws Exception {
    Binding binding = new Binding()
    binding.setProperty("out", output) 
    GroovyShell shell = new GroovyShell(binding);
    shell.evaluate(file);
}

评论后

public void exec(File file, OutputStream output) throws Exception {
    Binding binding = new Binding()
    binding.setProperty("out", new PrintStream(output)) 
    GroovyShell shell = new GroovyShell(binding);
    shell.evaluate(file);
}

Groovy脚本

def name='World'
out << "Hello $name!"


这可行,但我想重定向*任何*输出写入标准输出.特别是通过内置函数,例如println().
推荐阅读
手机用户2402852387
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有