import com.fasterxml.aalto.*;
XMLInputFactory xmlInputFactory = new InputFactoryImpl();
File xmlFile = new File("example.xml");
XMLEventReader xmlEventReader = xmlInputFactory.createXMLEventReader(new FileInputStream(xmlFile));
while(xmlEventReader.hasNext()) {
XMLEvent xmlEvent = xmlEventReader.nextEvent();
// ...
}
xmlEventReader.close();