Unlike SAX, JDOM, and DOM, comments don't really require any special treatment, classes, or methods.
import javax.xml.stream.*;
import java.net.*;
import java.io.*;
public class CommentPuller {
public static void main(String[] args) {
if (args.length == 0) {
System.err.println("Usage: java CommentPuller url" );
return;
}
try {
InputStream in;
try {
URL u = new URL(args[0]);
in = u.openStream();
}
catch (MalformedURLException ex) {
// Maybe it's a file name
in = new FileInputStream(args[0]);
}
XMLInputFactory factory = XMLInputFactory.newInstance();
XMLStreamReader parser = factory.createXMLStreamReader(in);
boolean inItem = false;
boolean inTitle = false;
// I am relying on no recursion here. To fix this
// just keep an int count rather than a boolean
for (int event = parser.next();
parser.hasNext();
event = parser.next()) {
if (event == XMLStreamConstants.COMMENT) {
System.out.println(parser.getText());
}
}
parser.close();
}
catch (XMLStreamException ex) {
System.out.println(ex);
}
catch (IOException ex) {
System.out.println("IOException while parsing " + args[0]);
}
}
}