import java.io.StringReader;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
import org.xml.sax.Attributes;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
public class MainClass {
public static void main(String args[]) {
try {
SAXParserFactory factory = SAXParserFactory.newInstance();
SAXParser saxParser = factory.newSAXParser();
DefaultHandler handler = new DefaultHandler() {
boolean name = false;
public void startElement(String uri, String localName, String qName, Attributes attributes)
throws SAXException {
if (qName.equalsIgnoreCase("NAME")) {
name = true;
}
}
public void characters(char ch[], int start, int length) throws SAXException {
if (name) {
System.out.println("Name: " + new String(ch, start, length));
name = false;
}
}
};
saxParser.parse(new InputSource(new StringReader(xmlString)), handler);
} catch (Exception e) {
e.printStackTrace();
}
}
static String xmlString = "" +
" " +
" Joe Wang " +
" joe@yourserver.com " +
" 202-999-9999 " +
" www.rntsoft.com " +
" " +
" " +
"Karol " +
" karol@yourserver.com " +
" 306-999-9999 " +
" www.rntsoft.com " +
" " +
" " +
" Green " +
" green@yourserver.com " +
" 202-414-9999 " +
" www.rntsoft.com " +
" " +
" ";
}