我正在解析这个XML文件:
<?xml version="1.0" encoding="UTF-8"?>
<tests>
<test category="Русский"/>
<test category="ελληνικά"/>
<test category="中文"/>
<test category="English"/>
</tests>
主要课程是:
import java.io.File;
import java.io.FileInputStream;
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathConstants;
import javax.xml.xpath.XPathExpression;
import javax.xml.xpath.XPathFactory;
import org.w3c.dom.NodeList;
import org.xml.sax.InputSource;
public class TestUnicode {
public static void main(String[] args) throws Exception {
XPath xpath = XPathFactory.newInstance().newXPath();
XPathExpression lolwhy = xpath.compile("//test");
final InputSource inputSource =
new InputSource(
new FileInputStream(
new File("sample.xml")));
NodeList parent = (NodeList) lolwhy.evaluate(
inputSource,
XPathConstants.NODESET);
System.out.println(parent.getLength());
for (int i = 0; i < parent.getLength(); i++) {
System.out.println(parent.item(i).getAttributes().
getNamedItem("category").getNodeValue());
}
}
}
输出是:
4 ??????? ???????? ?? English
我在这里做错了什么?
编辑:好的,这个问题与hebrew appears as question marks in netbeans有关,解决方法是:Setting the default Java character encoding?
答案 0 :(得分:0)
可能是解析没问题,但输出错误。
如果您使用的字体不包含这些字符,或者您将值输出为HTML,但指定了错误的编码,则可能是结果。
字体问题越有可能。
答案 1 :(得分:0)
System.out.println是罪魁祸首。 看看这是否有帮助
http://hints.macworld.com/article.php?story=20050208053951714