设置特定 JShell 的输出流
Set Output Stream of specific JShell
我有一个代码:
public class App {
public static void main(String[] args) {
System.out.println("Hello World from main!");
JShell shell = JShell.builder().build();
shell.eval("System.out.println(\"Hello World from JShell!\");");
}
}
现在我希望我可以只为 JShell 而不是普通代码设置输出流。
我试过了:
shell.eval("System.setOut(new Printer());");
shell.eval("System.out.println(\"Hello World!\");");
但是不起作用!
我的打印机class:
class Printer extends PrintStream{
public Printer() {
super(System.out);
}
@Override
public void print(String s) {
super.print("Message: - " + s);
}
}
首先,您需要让 JShell 使用“本地”executionEngine
,这样您就可以访问您的 Printer
:
JShell shell = JShell.builder().executionEngine("local").build();
这基本上意味着“相同的 JVM”。
其次,记得导入 Printer
class,或者使用它的完全限定名称,因为 Printer
可能与 JShell 代码所在的包不在同一个包中 运行(我的实验中名为 REPL
的包)。
你的Printer
class好像不是public,所以你也应该public
。
我有一个代码:
public class App {
public static void main(String[] args) {
System.out.println("Hello World from main!");
JShell shell = JShell.builder().build();
shell.eval("System.out.println(\"Hello World from JShell!\");");
}
}
现在我希望我可以只为 JShell 而不是普通代码设置输出流。
我试过了:
shell.eval("System.setOut(new Printer());");
shell.eval("System.out.println(\"Hello World!\");");
但是不起作用!
我的打印机class:
class Printer extends PrintStream{
public Printer() {
super(System.out);
}
@Override
public void print(String s) {
super.print("Message: - " + s);
}
}
首先,您需要让 JShell 使用“本地”executionEngine
,这样您就可以访问您的 Printer
:
JShell shell = JShell.builder().executionEngine("local").build();
这基本上意味着“相同的 JVM”。
其次,记得导入 Printer
class,或者使用它的完全限定名称,因为 Printer
可能与 JShell 代码所在的包不在同一个包中 运行(我的实验中名为 REPL
的包)。
你的Printer
class好像不是public,所以你也应该public
。