I am using Jtidy parser in java.
URL url = new URL("www.yahoo.com"); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); InputStream in = conn.getInputStream(); doc = new Tidy().parseDOM(in, null);
when I run this, "doc = new Tidy (). parseDOM (in, null);" I get some warnings as follows:
Tidy (vers 4th August 2000) Parsing "InputStream" line 140 column 5 - Warning: <table> lacks "summary" attribute InputStream: Doctype given is "-//W3C//DTD XHTML 1.0 Strict//EN" InputStream: Document content looks like HTML 4.01 Transitional 1 warnings/errors were found!
These alerts are displayed automatically on the console. But I do not want these warnings to be displayed on my console after starting
doc = new Tidy().parseDOM(in, null);
Please help me how to do this, how to remove these warnings from the console.
source share