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

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
Transforming XML with SAXFilters 
 

This Example shows you how to Transform XML with SAXFilters.

 

Transforming XML with SAXFilters

                         

This Example shows you how to Transform XML with SAXFilters. 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. There are some of the methods used in code given below for Transforming XML with SAXFilters:-

FileReader fileReader = new FileReader("Document2.xml"):-FileReader is a convenience class for reading character files. it is generally meant for reading streams of characters.

CustomFilter filter = new CustomFilter():-creates a custom filter.

XML code for the program generated is:-

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>
  


XMLwithSAX.java

/* 
 * @Program for Transforming XML with SAXFilters
 * XMLwithSAX.java 
 * Author:-RoseIndia Team
 * Date:-23-July-2008
 */

import org.xml.sax.*;
import org.xml.sax.helpers.*;
import javax.xml.transform.*;
import javax.xml.transform.stream.*;
import javax.xml.transform.sax.*;
import java.io.*;

public class XMLwithSAX {
    public final static void main(String[] args) throws Exception {
        class CustomFilter extends XMLFilterImpl {
        }
        FileReader fileReader = new FileReader("Document2.xml");
        BufferedReader br = new BufferedReader(fileReader);
        InputSource inputSource = new InputSource(br);

        XMLReader parser = XMLReaderFactory.createXMLReader();
        CustomFilter filter = new CustomFilter();
        filter.setParent(parser);

        SAXSource source = new SAXSource(filter, inputSource);
        FileWriter fw = new FileWriter("out.xml");
        BufferedWriter bw = new BufferedWriter(fw);
        StreamResult result = new StreamResult(bw);

        TransformerFactory factory = TransformerFactory.newInstance();
        Transformer transformer = factory.newTransformer();
        transformer.setOutputProperty(OutputKeys.INDENT, "yes");
        transformer.transform(source, result);
    }
}
  


Output of the program:-

<?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>


Download Source Code

                         

» View all related tutorials
Related Tags: .net c xml string http com file orm form xsd schema reference io mail namespace get version type default dtd

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
Software Solutions
Least Viewed
Most Rated
Recently Viewed
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.