このインターフェースのドキュメントでは、テキストノードはすべて、実際のタグ名ではなく、名前に対して「#text」を返すと記載されています。しかし、私がやっていることには、タグ名が必要です。
// I'm using the following imports
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import org.w3c.dom.Document;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.EntityResolver;
import org.xml.sax.InputSource;
// In the .xml input file
<country>US</country> // This is a "text node" .getTextContent()
// returns "US", I need "country" and .getNodeName()
// only returns "#text"
タグ名にアクセスするにはどうすればよいですか? これは何とか可能でなければなりません。私はハックな解決策を気にしません。
ドキュメント:
http://www.w3schools.com/dom/dom_nodetype.asp
http://www.w3.org/2003/01/dom2-javadoc/org/w3c/dom/Node.html
ありがとうございました。