What is the point of System.err?

本秂侑毒 提交于 2019-11-30 13:41:27

问题


In UNIX, I'm supposed to write a Java file that will print "EXIT 1" to the standard error, and then exit with a status of 1.

Here is my approach..

System.err.println("EXIT 1");
System.exit(1);

Is this what I'm supposed to do?

If so, how am I supposed to use it in the Unix shells? When I compile and run it in the bash, it just prints "EXIT 1" (so it does the same thing as System.out.println, why should I use "err"?). What is the "standard error" here?


回答1:


Every running program has these three streams:

  • Standard input (stdin), which normally comes from the keyboard. Exposed as System.in
  • Standard out (stdout), which normally goes to the console. Exposed as System.out
  • Standard error (stderr), which normally also goes to the console. Exposed as System.err

Your program is correct – it does print to stderr. But under normal circumstances, the stderr stream goes to the console just like the stdout stream, so they are visually indistinguishable.

However, the reason you should use stderr instead of stdout for error messages, is redirection. That means that you send stderr to a file instead of the console. Meanwhile, stdout will be unaffected, because the two streams are independent.

For example, you can do this in bash, cmd, PowerShell, etc:

$ java Program 2> errors.txt

Now, all output with System.err.println() will end up in errors.txt, while System.out.println() will still go to the screen. This can help with debugging.




回答2:


There are three data streams associated with nearly every process:

  • Standard Input: This is the stream of input into a program, either from a terminal, a console, piped output from another process, or some other means.
  • Standard Error: This is where all debugging and error messages should go. This is so that this sort of information can easily be separately captured from the regular output of a program. Web servers do this, by sending error messages to an error_log file via stderr, while the normal log file would be e. g. access_log.
  • Standard Output: This is the where all typical, expected output that a user running a program should expect to see said output appear.

Standard Output (stdout) and Standard Error (stderr) are nearly always the first and second output streams coming from a process, respectively. This allows me to do something like /path/to/my/neat/program > logs/program.log 2> logs/program.err and have output and errors nicely sorted.



来源:https://stackoverflow.com/questions/21197737/what-is-the-point-of-system-err

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!