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 ?

link|improve this question

3  
The whole point of try-catch is 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:12
1  
Does it make sense continuing running the program without a valid doc? If so, just catch the exception and react appropriately. Or do you mean continue parsing after this exception? – ChristopheD Jan 25 at 21:13
1  
RTFM – Hovercraft Full Of Eels Jan 25 at 21:15
I was using 1 try/catch for all program . Now I used outer try/catch and try/catch for DOMException . So for some reason I got this error and the program continues. – tnaser Jan 25 at 21:44
There is no need for nested try catch blocks - you can have multiple catch blocks to deal with different exceptions in different ways, but the whole point is to have a single try block. Once you've caught the exception, execution continues on the next line after the last catch block (whether an exception was thrown or not). – Highland Mark Jan 25 at 22:00
show 2 more comments
feedback

2 Answers

up vote 1 down vote accepted

If you are processing a list of files like you mention above you only need the try-catch block that is inside of the for loop:

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 (DOMException de) 
      {
         de.printStackTrace();
      }
}
link|improve this answer
feedback

Use a try/catch block

try{
   Document doc = new DomSerializer(props, true).createDOM(tagNode);
}
catch(DOMException e){
   //error handling here if you want
}

 //we now hit more code
link|improve this answer
What do you think of mu solution #1 ? – tnaser Jan 25 at 22:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.