I am reading HTML files from a folder using xml parser that store the clean code in tagNode
try {
Document doc = new DomSerializer(props, true).createDOM(tagNode);
} catch (Exception ex) {
ex.printStackTrace();
}
But one of the files is giving me an error :
org.w3c.dom.DOMException: INVALID_CHARACTER_ERR: An invalid or illegal XML character is specified.
How I can continue running the program after the exception is caught ?
solution #1
try
{
File folder = new File(path);
File[] listOfFiles = folder.listFiles();
FileWriter fstream = new FileWriter("dataset.txt");
BufferedWriter br= new BufferedWriter(fstream);
for (int i = 0; i < listOfFiles.length; i++) {
{
try {
Document doc = new DomSerializer(props, true).createDOM(tagNode);
} catch (Exception ex) {
ex.printStackTrace();
}
}
} catch (Exception ex) {
ex.printStackTrace();
}
Given a way around it , why I am getting this error ?
try-catchis so that you can continue your program if an exception occurs, can you post the exception handling that you are doing? – Hunter McMillen Jan 25 at 21:12doc? If so, just catch the exception and react appropriately. Or do you meancontinue parsing after this exception? – ChristopheD Jan 25 at 21:13