I have a piece of code that goes like this
File file = null;
try {
file = new file (filePath);
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse(file);
// Do Stuff
} finally {
if ( file.exists() ){
file.delete();
}
}
However if there is an error in the xml parsing, the file does not get deleted. Is there a way to fix this to ensure the file gets deleted?