我想在解析後刪除一個有錯誤的xml文件。解析過程拋出一個異常。問題只發生在Windows操作系統下。在Linux下,刪除工作正常。 這是我使用的代碼,在java中解析後刪除xml文件有錯誤
try{
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = (Document) db.parse(file);
} catch(Exception e){
file.delete();
}
請提供堆棧跟蹤:http://stackoverflow.com/help/how-to-ask –