try
{
//
// Create the XML Document
//
DocumentBuilderFactory dbfac = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = dbfac.newDocumentBuilder();
Document doc = docBuilder.parse(filePath);
// ...
}
catch (Exception e)
{
// ...
}
You need to create an account or log in to post comments to this site.