我试图从以下 xml 中获取值,但我编写的代码返回一堆问号而不是它应该返回的值。我猜这一定是一些编码问题,但我还没有在网上找到任何关于此的内容。
<channel>
<title>ΖΩΔΙΑ Προβλέψεις, 1 Σεπτεμβρίου 2012</title>
</channel>
zodiaClass.java
public class zodiaClass {
@Root(strict = false)
public static class Example {
@Path("channel")
@Element
private String title;
}
public static void main(String[] list) throws Exception {
Persister persister = new Persister();
File file = new File("example1/download.xml");
Example example = persister.read(Example.class, file);
System.out.println(example.title);
}
}
输出:
????? ??????????, 1 ??????????? 2012