Never been to DZone Snippets before?

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

About this user

Thiti V. Sintopchai http://thitiv.blogspot.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Java DOM : Creating an XML Document from XML File

// description of your code here

   1  
   2      try
   3      {
   4        //
   5        // Create the XML Document
   6        //
   7  
   8        DocumentBuilderFactory dbfac = DocumentBuilderFactory.newInstance();
   9        DocumentBuilder docBuilder = dbfac.newDocumentBuilder();
  10        Document doc = docBuilder.parse(filePath);
  11  
  12        // ...
  13  
  14      }
  15      catch (Exception e)
  16      {
  17        // ...
  18      }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS