0

我打开了跟踪我的基于 JavaMail 的应用程序,我可以看到跟踪,但它看起来像垃圾,因为它是 unicode 并且我的机器只知道 EBCDIC。无论如何我可以使用我的机器的默认编码(EBCDIC)打印出跟踪吗?这是我激活跟踪的方法:

session.setDebug(true);
4

1 回答 1

0

By default the trace goes to System.out. If System.out isn't converting to EBCDIC, you can create your own PrintStream that does so and use the session.setDebugOut(ps) method to set it.

于 2012-10-19T01:23:19.977 回答