Java 使用 SAX 解析读取 XML

Java read XML with SAX Parsing

所以我开始使用 xml 和 SAX 解析器,现在我试图弄清楚它是如何工作的,我熟悉 JSON 但这似乎不起作用喜欢 JSON。所以这是我正在使用的代码

package com.myalbion.gamedataextractor.handlers;

import java.io.File;
import java.io.IOException;
import java.util.List;
import java.util.Map;

import javax.xml.parsers.ParserConfigurationException;
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;

import com.myalbion.gamedataextractor.Main;
import com.myalbion.gamedataextractor.datatables.Language;
import com.myalbion.gamedataextractor.datatables.Localized;
import com.myalbion.gamedataextractor.datatables.XMLFile;

public class LocalizationXMLFileHandler extends DefaultHandler {

    private String temp;
    Localized localized;
    List<Localized> localizedList;
    Map<Language, String> tempMap;

    /*
     * When the parser encounters plain text (not XML elements),
     * it calls(this method, which accumulates them in a string buffer
     */
    public void characters(char[] buffer, int start, int length) {
           temp = new String(buffer, start, length);
    }


    /*
     * Every time the parser encounters the beginning of a new element,
     * it calls this method, which resets the string buffer
     */ 
    public void startElement(String uri, String localName,
                  String qName, Attributes attributes) throws SAXException {
           temp = "";
           if (qName.equalsIgnoreCase("tu")) {
               localized = new Localized();
               localized.setUniqueName(attributes.getValue("tuid"));

           } else if(qName.equalsIgnoreCase("tuv")) {
               tempMap.put(Language.getLanguageFromCode(attributes.getValue("xml:lang")), )
           }
    }

    /*
     * When the parser encounters the end of an element, it calls this method
     */
    public void endElement(String uri, String localName, String qName)
                  throws SAXException {

           if (qName.equalsIgnoreCase("tu")) {
                  // add it to the list
                  accList.add(acct);

           } else if (qName.equalsIgnoreCase("Name")) {
                  acct.setName(temp);
           } else if (qName.equalsIgnoreCase("Id")) {
                  acct.setId(Integer.parseInt(temp));
           } else if (qName.equalsIgnoreCase("Amt")) {
                  acct.setAmt(Integer.parseInt(temp));
           }

    } 

}

我正在尝试从这个 xml 文件中提取数据到保存语言枚举和本地化名称的 tempMap 中。

<?xml version="1.0"?>
<tmx version="1.4">
  <body>
    <tu tuid="@ACCESS_RIGHTS_ACCESS_MODE">
      <tuv xml:lang="EN-US">
        <seg>Access Mode</seg>
      </tuv>
      <tuv xml:lang="DE-DE">
        <seg>Zugriffsmodus</seg>
      </tuv>
      <tuv xml:lang="FR-FR">
        <seg>Mode d'accès</seg>
      </tuv>
      <tuv xml:lang="RU-RU">
        <seg>Доступ</seg>
      </tuv>
      <tuv xml:lang="PL-PL">
        <seg>Tryb dostępu</seg>
      </tuv>
      <tuv xml:lang="ES-ES">
        <seg>Modo de acceso</seg>
      </tuv>
      <tuv xml:lang="PT-BR">
        <seg>Modo de acesso</seg>
      </tuv>
      <tuv xml:lang="ZH-CN">
        <seg>权限模式</seg>
      </tuv>
      <tuv xml:lang="KO-KR">
        <seg>접근 모드</seg>
      </tuv>
    </tu>
  </body>
</tmx>

现在,在 java 代码的第 49 行,我从 tuv 属性获取语言代码,但我缺少本地化名称,它位于 tuv 下方,称为 seg of can receive the parents 属性并获取段值在同一行?

每次您点击一个新的文本节点时,您都​​会覆盖您的文本缓冲区,包括像 </seg></tuv> 之间的纯空白文本节点。处理seg结束标签时需要保存text buffer的内容,处理tuv结束标签时取

您还应该知道,可以在对 text() 的一系列调用中提供单个文本节点的内容:解析器可以按照自己喜欢的方式分解它(许多解析器在实体边界上这样做) .您需要通过附加到缓冲区来累积内容。

另请注意,XML 区分大小写;在测试元素名称时,你不应该真的忽略大小写。

并且在询问有关 SO 的问题时,正确使用术语会有所帮助:将元素称为属性会使人感到困惑。