Home | Ajax | BioInformatics | Dojo | EAI | EJB | Hibernate | J2ME | Java | Java Glossary | Java Servlets | JavaScript | Jboss | JDBC | JDO | Jmeter | JSF | JSP | JUnit | Maven | MySQL | Spring Framework | SQL | Struts | Technology | WAP | Web Services | XML


 
  
 
Programming Tutorials: Ajax | Articles | JSP | Bioinformatics | Database | Free Books | Hibernate | J2EE | J2ME | Java | JavaScript | JDBC | JMS | Linux | MS Technology | PHP | RMI | Web-Services | Servlets | Struts | UML
 

 
Facing Programming Problem?
Ask Questions?, Browse Latest Questions, Question-Answer Guidelines
XML
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments

Reading XML from a File

                         

This Example shows you how to Load Properties from the XML file via a DOM document. JAXP (Java API for XML Processing) is an interface which provides parsing of xml documents.Javax.xml.parsers is imported to provide classes for the processing of XML Documents. Here the Document BuilderFactory is used to create new DOM parsers. Some of the methods used for reading XML from a  file are described below :-

File f = new File("Document2.xml"):-Creating File from where properties are to be loaded.

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance():-Declaring DocumentBuilderFactory to create new DOm parsers.

Element root = doc.getDocumentElement():-By this method we can have direct access to the root of the DOM Document.

NodeList list = doc.getElementsByTagName("Employee"):-NodeList is an interface that provides an ordered collection of nodes.We can access nodes from the Nodelist by their index number.

NodeList nodelist = element.getElementsByTagName("name"):-This method returns a list of element with a given tagname i.e ("name").

Xml code for the program generated is:-

<?xml version="1.0" encoding="UTF-8"?>
<Company>
    <Employee>
        <name Girish="Gi">Roseindia.net
        </name>
    </Employee>
    <Employee>
        <name Komal="Ko">newsTrack
        </name>
    </Employee>
    <Employee>
        <name Mahendra="Rose">Girish Tewari
        </name>
    </Employee>
</Company>

readxmlfromafile.java

/* 
 * @Program to load properties from XML file.
 * readxmlfromafile.java 
 * Author:-RoseIndia Team
 * Date:-10-Jun-2008
 */

import java.io.*;
import org.w3c.dom.*;
import javax.xml.parsers.*;


public class readxmlfromafile {

    public static void main(String[] argsthrows Exception {
        File f = new File("Document2.xml");
        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        DocumentBuilder db = dbf.newDocumentBuilder();
        Document doc = db.parse(f);
        new readxmlfromafile().read(doc);
    }

    public void read(Document doc) {
        Element root = doc.getDocumentElement();
        NodeList list = doc.getElementsByTagName("Employee");
        for (int i = 0; i < list.getLength(); i++) {
            Node node = list.item(i);
            if (node.getNodeType() == Node.ELEMENT_NODE) {

                Element element = (Elementnode;
                NodeList nodelist = element.getElementsByTagName("name");
                Element element1 = (Elementnodelist.item(0);
                NodeList fstNm = element1.getChildNodes();
                System.out.println("Name : " (fstNm.item(0)).getNodeValue());
            }
        }
    }
}

Output of the program:-

Name : Roseindia.net
       

Name : newsTrack
       

Name : Girish Tewari


DownLoad Source Code

                         

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Latest Searches:
ajax auto complete
get Numeric Value
binary search tree
clear the console in j
jsf tomcat
oining points
wickets
to find the maximum of
types of webserver
PHP Database Related M
java popup window even
jsp login by insertin
global variable in j
java write line
actionlistener
<html:hidden>
JTable alignment
matrix representation
reading barcode
download struts2 login
create a class callled
JDBCJ AVA SUN
Binary Tree JTree
hashCode
jsp action tags
how to pass same varia
resultsetmethods
java program using lis
ajax sample code onkey
create excel file usin
finding max min array
servlets beans
java random numbers
JTable
JTree Binary Tree
jsf tomcat
java loop pass count
Display Data from Data
array java
How to change celcius
DES algorithm
insert image in databa
struts spring hibe
working of paint funct
jasper
draw triangle
DateFormat.LONG
struts upload
java system package
sql tutorial
converting a floating
mysql blob
check box in jsp
pop up
format decimal left ju
File Java
<displaytag>
writing ByteArray into
Configure
util package
ajax prototype
iterate nest
Qt Jambi
count row in resultset
Button
Reading File into Byte
dao pattern
circumscribed
button action handeler
space char
Animating Dialogue usi
eclox
send smsSMS
Hibernate code
how to read txt file f
action properties
uml digrams
HTML Getting Started H
session
to add a jbutton to t
Java String toLowerCase Example
Java String toCharArray Example
Java String substring Example
Java String indexOf Example
Java String startsWith Example
Java String hashCode Example
Java String matches Example
Java String length Example
Java String lastIndexOf Example
Java String isEmpty Example
Java String equalsIgnoreCase Example
Java String equals Example
Java String endsWith Example
Java String copyValueOf Example
Java String contentEquals Example
  EAI Articles
  Java Certification
Tell A Friend
Your Friend Name
Search Tutorials

 

 
 
Browse all Java Tutorials
Java JSP Struts Servlets Hibernate XML
Ajax JDBC EJB MySQL JavaScript JSF
Maven2 Tutorial JEE5 Tutorial Java Threading Tutorial Photoshop Tutorials Linux Technology
Technology Revolutions Eclipse Spring Tutorial Bioinformatics Tutorials Tools SQL
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.