DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Java DOM : Creating An XML Document From XML File
// description of your code here
try
{
//
// Create the XML Document
//
DocumentBuilderFactory dbfac = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = dbfac.newDocumentBuilder();
Document doc = docBuilder.parse(filePath);
// ...
}
catch (Exception e)
{
// ...
}





