Creating an InlineStreamFilter

In this section, you will learn how to InlineStream Filter.

Creating an InlineStreamFilter

Creating an InlineStreamFilter

     

This Example shows you how to Create an InlineStream Filter. 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 Creating a Filter:-

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

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

reader = factory.createFilteredReader(reader, new StreamFilter():-This method creates a filtered reader that wraps the filter around the reader.

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>   
InlineStreamFilter.java
/* 
 * @Program for creating an InlineStreamFilter.
 * InlineStreamFilter.java 
 * Author:-RoseIndia Team
 * Date:-19-July-2008
 */

import java.io.File;
import java.io.FileInputStream;
import javax.xml.stream.*;
import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLStreamReader;

public class InlineStreamFilter {
  public static void main(String[] argsthrows Exception {
  File xmlfile = new File("Document4.xml");
  XMLInputFactory factory = XMLInputFactory.newInstance();
  XMLStreamReader reader = factory.createXMLStreamReader
			    (new FileInputStream(xmlfile));
  reader = factory.createFilteredReader(reader, new StreamFilter() 
	{
  public boolean accept(XMLStreamReader reader) {
  return true;
  }
  });
  System.out.println(reader.getLocation());
  }
}   


Output of the program:-

Line number = 1

Column number = 39

System Id = null

Public Id = null

Location Uri= null

CharacterOffset = 38
DownLoad Source Code