Read an XML Document with the StAX Iterator API

Read an XML Document with the StAX Iterator API

This tip shows an example of how to use the Iterator API to read from an XML file:

import javax.xml.stream.*;import javax.xml.stream.events.*;import java.io.*;public class StAXBasicEventReader{   public StAXBasicEventReader(){}    public static void main(String[] args)      {      XMLInputFactory XMLif=null;      XMLEventReader XMLer=null;                    System.setProperty("javax.xml.stream.XMLInputFactory",                             "com.sun.xml.stream.ZephyrParserFactory");            //get an XMLInputFactory object         XMLif=XMLInputFactory.newInstance();             //setting the XMLInputFactory corectly         XMLif.setProperty("javax.xml.stream.isSupportingExternalEntities",Boolean.TRUE);XMLif.setProperty("javax.xml.stream.isNamespaceAware",Boolean.TRUE);XMLif.setProperty("javax.xml.stream.isReplacingEntityReferences",Boolean.TRUE);                                          //getting an XMLEventReader object      try{         XMLer=XMLif.createXMLEventReader(          "file:///C://Data_Local//xml//docs//",         new FileReader("C://Data_local          //xml//docs//AirWings_xml.xml"));                  }catch(java.io.FileNotFoundException e)            {System.out.println(e.getMessage());         }catch(javax.xml.stream.XMLStreamException e)                   {System.out.println(e.getMessage());}                                       //getting the events      try{         while(XMLer.hasNext())               {               XMLEvent event=XMLer.nextEvent();               //XMLEvent event=(XMLEvent)XMLer.next();               int event_type=event.getEventType();                   switch(event_type)      {      case XMLStreamConstants.START_DOCUMENT:      System.out.println(">Start-Document<"+"Code:"+event_type);      break;                               case XMLStreamConstants.END_DOCUMENT:      System.out.println(">End-Document<"+"Code:"+event_type);      break;                                                                                   case XMLStreamConstants.START_ELEMENT:      System.out.println(">Start-Element<"+"Code:"+event_type);      break;                                //...      }                                                                                     }                //clean up                    XMLer.close();     }catch(javax.xml.stream.XMLStreamException e)               {System.out.println(e.getMessage());}               }        } 
Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes