Java code example using SAX to parse xml

Y2J
Release: 2017-04-26 15:43:09
Original
1888 people have browsed it

import java.io.File;
import java.util.LinkedList;
import java.util.List;
 
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
 
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
 
public class ParseXMLFileWithSAX extends DefaultHandler {
 
private StringBuffer buffer = new StringBuffer();
 
    private static String responseCode;
    private static String date;
    private static String title;
 
    private static Currency currency;
    private static Rates rates;
 
    public static void main(String[] args) throws Exception {
 
        DefaultHandler handler = new ParseXMLFileWithSAX();
 
        SAXParserFactory factory = SAXParserFactory.newInstance();
        factory.setValidating(false);
 
        SAXParser parser = factory.newSAXParser();
 
        parser.parse(new File("in.xml"), handler);
 
        System.out.println("Response Code:" + responseCode);
        System.out.println("Date:" + date);
        System.out.println("Title:" + title);
        System.out.println("Rates:");
 
        for (Currency curr : rates.currencies) {
            System.out.println("\tCode:" + curr.code + " - Rate:" + curr.rate);
        }
 
    }
 
    private static class Currency {
        public String code;
        public String rate;
    }
 
    private static class Rates {
        public List<Currency> currencies = new LinkedList<Currency>();
    }
 
    @Override
    public void startElement(String uri, String localName, String qName,
            Attributes attributes) throws SAXException {
 
        buffer.setLength(0);
 
        if (qName.equals("response")) {
            responseCode = attributes.getValue("code");
        }
        else if (qName.equals("date")) {
            date = "";
        }
        else if (qName.equals("title")) {
            title = "";
        }
        else if (qName.equals("rates")) {
            rates = new Rates();
        }
        else if (qName.equals("currency")) {
            currency = new Currency();
        }
 
    }
 
    @Override
    public void endElement(String uri, String localName, String qName)throws SAXException {
 
        if (qName.equals("date")) {
            date = buffer.toString();
        }
        else if (qName.equals("title")) {
            title = buffer.toString();
        }
        else if (qName.equals("currency")) {
            rates.currencies.add(currency);
        }
        else if (qName.equals("code")) {
            currency.code = buffer.toString();
        }
        else if (qName.equals("rate")) {
            currency.rate = buffer.toString();
        }
 
    }
 
    public void characters(char[] ch, int start, int length) {
        buffer.append(ch, start, length);
    }
 
}
Copy after login

Input xml file:

<?xml version="1.0" encoding="UTF-8" ?>
<response code="200">
    <date>2008-11-07</date>
    <title>Exchange rates for 2008-11-07</title>
    <rates>
        <currency>
            <code>EUR</code>
            <rate>1.220</rate>
        </currency>
        <currency>
            <code>USD</code>
            <rate>1.275</rate>
        </currency>
    </rates>
</response>
Copy after login

Output:

Response Code:200
Date:2008-11-07
Title:Exchange rates for 2008-11-07
Rates:
    Code:EUR - Rate:1.0
    Code:USD - Rate:1.275600
Copy after login

The above is the detailed content of Java code example using SAX to parse xml. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!