系统相关
首页 > 系统相关> > Java中的后台进程

Java中的后台进程

作者:互联网

我一直在为Java 7中的OCP考试做准备.我正在阅读的这本书涉及到一些我完全不理解的东西.

那是,

If the JVM is invoked indirectly by IDE, or if the JVM is invoked from
a background process, then the method call System.console() will
fail and return null.

在什么情况下,如何从后台进程调用JVM?有人可以详细说明吗?
最好的祝福

解决方法:

假设您使用的是UNIX系统,并且运行的程序可以请求两个操作数并生成它们的总和.如果您将其调用为:

/home/ucas> java -jar add.jar
Please enter the first summand:
42
Please enter the second summand:
17
The sum is 59.

现在假设你在后台运行它:

/home/ucas> java -jar add.jar &
java.lang.NullPointerException at Add.main(Add.java:17)
....

查看Add.java,您会看到:

Console console = System.console(); // 16
Reader  reader  = console.reader(); // 17

该进程与终端分离,因此控制台将为null.堆栈跟踪打印到标准错误,不会重定向.

标签:java,background-process
来源: https://codeday.me/bug/20190831/1777871.html