|
Java™ by example!
|
|
|
How do I redirect the errors produced by javac to a file?
Hi! You redirect errors occured when compiling java programmes using Some SystemProperty like the following.
javac -J-Djavac.pipe.output=true filename.java >err.txt
And there are two other ways I forgot those now.
wishes, Adi
Further Information
Author of answer: Adinarayana Kamma
Comments
Comments to this answer are only viewable by members. Login or become a member!
|
|
|
|
|