How do I pipe the Java console output to a file?

后端 未结 5 1568
误落风尘
误落风尘 2020-12-08 21:17

I found a bug in an application that completely freezes the JVM. The produced stacktrace would provide valuable information for the developers and I would like to retrieve i

5条回答
  •  半阙折子戏
    2020-12-08 22:13

    try this guide it works for me. it also guides you that how you can set "System.setOut(fileStream);", "System.setErr(fileStream);"

提交回复
热议问题