I'm doing something like this
PrintStream actualStdout = new PrintStream(new FileOutputStream(FileDes开发者_开发知识库criptor.out))
and then all of my logging is like
actualStdout.println(message)
(don't ask why)
I see a problem in my IDE when I try to print a string with slashes, such as a url.
http://somehostcom/somepath comes out as http:/somehost.com/omepath
精彩评论