Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials:
 

Software Solutions and Services
 

 
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments
 
Loading properties from a XML file 
 

In this section, you will learn how to use of Load properties from a XML file.

 

Loading properties from a XML file

                         

This Example shows you how to Load properties from a XML file. JAXP (Java API for XML Processing) is an interface which provides parsing of xml documents. Here the Document BuilderFactory is used to create new DOM parsers. Some of the methods used for loading properties from a XML file are described below:-

Properties p=new Properties():-Creates an instance of class Property class .Importance of property class here is that by the use of this class we can save properties to a stream and also load properties from a stream.

p.load(inputStream):-This method reads a propertyList from inputstream (inputStream).

p.list(System.out):-This method prints the propertyList to the OutputStream.

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>

Loadpropertiesfromxml.java

 

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

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

public class Loadpropertiesfromxml {

    public static void main(String[] args) throws Exception {
        DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
        DocumentBuilder builder = builderFactory.newDocumentBuilder();
        Document doc = builder.newDocument();
        new Loadpropertiesfromxml().load(doc);
    }

    public void load(Document doc) throws Exception {
        Properties p = new Properties();
        FileInputStream inputStream = new FileInputStream("1.xml");
        p.load(inputStream);
        
        p.list(System.out);
        System.out.println("Properties of Girish is: "+ p.getProperty("Girish"));
        }
}


Output of the program:-

-- listing properties --
komal=newstrack
Girish=roseindia
Properties of Girish is: roseindia
DownLoad Source Code

                         

» View all related tutorials
Related Tags: c xml error file dom class ui console build classes parse parser method get vi factory using ole this id

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 
Training Courses
Tell A Friend
Your Friend Name
Website Designing Services
 
Web Designing Packages From $150!
 
Website Designing Company Web Hosting
 
Website Designing Quotation
 
Search Tutorials:

 

 
 

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 | Flex 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.