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

Ignoring Comments While Parsing an XML File

                         

This Example shows you how to Ignore Comments in an XML File. JAXP is an interface which provides parsing of xml documents. Here the Document BuilderFactory is used to create new DOM parsers. Methods used in code given below for Ignoring Comments is described below:-

DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance():-This method Creates a DocumentBuilder Factory .DocumentBuilder Factory is a Class that enables application to obtain parser for building DOM trees from XML Document

DocumentBuilder builder = Factory.newDocumentBuilder():-This method creates a DocumentBuilder object with the help of a DocumentBuilderFactory

File file = new File("Document4.xml"):-Creates a new File.

factory.setIgnoringComments(true):-This method describes that the parser produced by the above code will ignore comments.

TransformerFactory factory = TransformerFactory.newInstance():-TransformerFactory is a class that is used to create Transformer objects. A TransformerFactory instance can be used to create Transformer and Templates objects.

transformer.transform(source, result):-This function organize data according to a style sheet as we are retrieving it from the File.


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>
  


IgnoringComments.java

/* 
 * @Program for ignoring Comments While Parsing an XML File 
 * IgnoringComments.java 
 * Author:-RoseIndia Team
 * Date:-21-July-2008
 */
import java.io.*;
import org.w3c.dom.*;
import javax.xml.parsers.*;
import javax.xml.transform.*;
import javax.xml.transform.dom.*;
import javax.xml.transform.stream.*;

public class IgnoringComments {
    public static void main(String[] argsthrows Exception {
        File file = new File("Document4.xml");
        DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
        factory.setValidating(false);
        // Ignores all the comments described in the XML File
        factory.setIgnoringComments(true);
        DocumentBuilder builder = factory.newDocumentBuilder();
        Document doc = builder.parse(file);
        new IgnoringComments().read(doc);
    }
    public void read(Document docthrows Exception {
        TransformerFactory factory1 = TransformerFactory.newInstance();
        Transformer transformer = factory1.newTransformer();
        transformer.setOutputProperty(OutputKeys.INDENT, "yes");
        StringWriter writer = new StringWriter();
        StreamResult result = new StreamResult(writer);
        DOMSource source = new DOMSource(doc);
        transformer.transform(source, result);
        String s = writer.toString();
        System.out.println(s);
    }
}
    

Output of the program:-

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<Company>
    <Employee Id="Rose-2345">
    <CompanyName>Newstrack</CompanyName>
        <City>Rohini</City>&gt;
        <name>Girish Tewari</name>
        <Phoneno>1234567890</Phoneno>
       <Doj>May 2008</Doj>
        </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>


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:
excel from java
database connections
create bar graph in ja
400 book
date in java
java file sream
multiple ajax combo
Pizza ordering program
DateFormat
jsp login by insertin
dispaly date in day mo
create HTML table
udp client java
weblogic server 9.2
clientside validations
java installtion
count row
create file menu using
java collections
HOW TO INSERT VALUE FO
add title in pdf
form bean update
MS
weblogic servcer
servlets mysql
iterate nest
java uppercase
max length 500 chars
7 basic steps for jdbc
sample examples in spr
J2ME Code Camp
Photoshop Reusable gr
visual midlet
spring hibernate ehcac
what is interface in j
MySQL User Interface
consructor overloading
major changes done whi
mouse motion
design patterns tutori
parseDouble()
finding square Root by
jlist select
writing data to an exi
Janino -- an Embedded
list switch
Database MySQL Using S
portals
calculations
multiple request
ActionScript
generic
jfreechart
java read from file
java populate jsf tabl
multilingual
send text file to clie
JBOSS 4.0
login session
difference
standard deviation arr
JUnit pdf
how to read key value
commandlink example
reflection api
remove duplicates
javax
MouseEvent
program java Count the
getLogger
DateFormat.LONG
connect to sql databas
<t:tree2
unchained
abandon
code for moving from 1
JSP:File Input type re
jdbc and jsp
checkbox button enable
getter setter methods
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.