I am writing a program that uses jtidy to clean up html from source code obtained from a URL. I want to display the errors and warnings in a GUI, in a JTextArea. How would I “reroute” the warnings from printing to stdout to the JTextArea? I’ve looked over the Jtidy API and don’t see anything that does what I want. Anyone know how I can do this, or if it’s even possible?
// testing jtidy options
public void test(String U) throws MalformedURLException, IOException
{
Tidy tidy = new Tidy();
InputStream URLInputStream = new URL(U).openStream();
File file = new File("test.html");
FileOutputStream fop = new FileOutputStream(file);
tidy.setShowWarnings(true);
tidy.setShowErrors(0);
tidy.setSmartIndent(true);
tidy.setMakeClean(true);
tidy.setXHTML(true);
Document doc = tidy.parseDOM(URLInputStream, fop);
}
Assuming JTidy prints errors and warnings to stdout, you can just temporarily change where
System.outcalls go:There is an analogous method if you need to do this for
System.errinstead/as well.