XML StAXパーサーの使い方


  1. XMLファイルを読み込む方法:
import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
public class XMLParserExample {
    public static void main(String[] args) {
        try {
            XMLInputFactory factory = XMLInputFactory.newInstance();
            XMLStreamReader reader = factory.createXMLStreamReader(new FileInputStream("input.xml"));

            // XMLの要素や属性にアクセスするコードを追加する

            reader.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (XMLStreamException e) {
            e.printStackTrace();
        }
    }
}
  1. XML要素の取得方法:
// XML要素の開始タグを読み込む
while (reader.hasNext()) {
    int event = reader.next();
    if (event == XMLStreamReader.START_ELEMENT) {
        String elementName = reader.getLocalName();
        // elementNameを使用して必要な処理を行う
    }
}
  1. XML属性の取得方法:
// 現在の要素の属性を取得する
int attributeCount = reader.getAttributeCount();
for (int i = 0; i < attributeCount; i++) {
    String attributeName = reader.getAttributeLocalName(i);
    String attributeValue = reader.getAttributeValue(i);
    // attributeNameとattributeValueを使用して必要な処理を行う
}