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

Testing EntityReferences in Xml

                         

This Example gives you the way to test EntityReferences in an XML file. JAXP (Java API for XML Processing) is an interface which provides parsing of xml documents. There are some of the methods used in code given below for Testing EntityReferences in Xml File:-

XMLInputFactory Factory = XMLInputFactory.newInstance():-By this method we create a new instance of the factory.

factory.setProperty(XMLInputFactory.IS_COALESCING, true):-This method sets the property that requires the parser to coalesce adjacent character data sections.

factory.setProperty(XMLInputFactory.IS_REPLACING_ENTITY_REFERENCES, true):-This method sets the parser to replace internal entity references with their replacement text.

XMLStreamReader reader = Factory.createXMLStreamReader(new FileInputStream(file)):-Creates a new StreamReader which allows forward, read-only access to XML.

Xml code for the program generated is:-

<?xml version="1.0" encoding="UTF-8"?>
<!--     Information About Employees -->
<Company>
    <Employee Id="Rose-2345">
    <CompanyName>Newstrack</CompanyName>
        <City>Rohini</City>>
        <name>Girish Tewari</name>
        <Phoneno>1234567890</Phoneno>
       <Doj>May 2008</Doj>
        </Employee>
    <!-- Information about other  Employee -->    
    <Employee Id="Rose-2346">
        <CompanyName>RoseIndia.net</CompanyName>
         <City>Lucknow</City>
         <name>Mahendra Singh</name>
        <Phoneno>123652314</Phoneno>
        <Doj>May 2008</Doj>
    </Employee>
</Company>
 


TestingEntityReference.java

/* 
 * @Program for testing EntityReferences in Xml.
 * TestingEntityReference.java 
 * Author:-RoseIndia Team
 * Date:-19-July-2008
 */
import java.io.File;
import java.io.FileInputStream;
import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLStreamConstants;
import javax.xml.stream.XMLStreamReader;

public class TestingEntityReference {
    public static void main(String[] args) throws Exception {
        File f = new File("Document4.xml");

        
XMLInputFactory factory = XMLInputFactory.newInstance();
        factory.setProperty(XMLInputFactory.IS_COALESCING, true);
        factory.setProperty(XMLInputFactory.IS_REPLACING_ENTITY_REFERENCES, true);

        XMLStreamReader reader = factory.createXMLStreamReader(new FileInputStream(f));
        System.out.println("Factory is validating: " 
        
+ reader.getProperty(XMLInputFactory.IS_VALIDATING));
        System.out.print("Factory is Replacing Entity Reference: ");
        System.out.print(reader.getProperty
             (XMLInputFactory.IS_REPLACING_ENTITY_REFERENCES));


        while (reader.hasNext()) {
            int event = reader.next();
            if (event == XMLStreamConstants.CHARACTERS) {
                System.out.print(reader.getText());
            else if (event == XMLStreamConstants.ENTITY_REFERENCE) {
                System.out.println("en: " + reader.getLocalName());
                System.out.println("er: " + reader.getText());
            }
        }
    }
}
  

Output of the program:-

Factory is validating: false

Factory is Replacing Entity Reference: true

    Newstrack

        Rohini>

        Girish Tewari

        1234567890

       May 2008
        

        RoseIndia.net

         Lucknow

         Mahendra Singh

        123652314

        May 2008


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:
JSon JMeter
tabbing through a flex
how to use tab control
list iteration in java
login using jsp serv
string array add eleme
jdk1.6.0_07 download
Hibernate program
Java SMPP API Homepage
jsf action form
conditional Statements
�?� �??�?� ?�?
a sample struts projec
Passing Parameters in
requestFocus method
actionlistener
Photoshop Digital Art
bomb
array element
PL/SQL tutorial
A
code to store a string
arraylist using jsp
jstl if
Photoshop Matrix Motio
two dimensional array
<bean:define>
Date in JSP
tread
<\!DOCTYPE files SYSTE
Java example program t
downloading and openin
PHP Selecting differen
sample codes of hibern
internationalisaeion
update all columns of
convert string upperca
string index exception
request and response h
voip using mobile phon
Photoshop Digital Art
struts 1 date picker e
how to print arraylist
MPEG4/MP3 Streaming En
jsp
�?�°�??�?�°?�?
web logic tutorial
ejp
how to input 2 xml fil
token string
map iteration in jstl
XML READER
WebLogic Server Tools
File
liferay
make boom sounds using
iterator
struts tag <logic:iter
radio button in html
textfield password
drop
array to string
ArrayList
Heap Sort in Java
convert string to stin
jsf books
tree
java open output file
examples of jdbc
hgf
iBatis Stored Procedur
MULTIPLE SELECT COMBO
Login form
webservice
Photoshop Refrozen Eff
CALENDAR ICON
Time
Exception
date adjust timezone
java file sream
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.