Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用谷歌搜索了我的心!我试图弄清楚从 Windows 命令行执行 java 时如何输出 java 类可能给出的任何错误。
例如
java -jar class.jar <someFile.file>
如果该行抛出任何错误,我希望将它们存储到文本文件中以供以后查看。
我试过了
java -jar class.jar <someFile.file> >> log.txt
但是尽管抛出错误 log.txt 文件是空的。
谢谢大家!
利用:
java -jar class.jar <someFile.file> 2>> log.txt
2 重定向错误流。
或者您可以使用 bat 文件轻松地将所有输出定向到命令提示符中的文本文件
C:> something.bat > console_output.txt