1

我想对 HTML 文件发出一些 XPath 请求。这是我的代码:

public static void main(String args[]) {

    try{

        /** We load the HTML file we want to parse */  
        BufferedReader br = new BufferedReader(new InputStreamReader (new FileInputStream("html_doyoubuzz.html"),"UTF-8"));


        /** we clean HTML file */           
        TagNode tagNode = new HtmlCleaner().clean(br);
        Document doc2 = new DomSerializer( new CleanerProperties() ).createDOM(tagNode);


        /******************************
         *                            *
         *       XPath Requests       *
         *                            *
         ******************************/

        XPath xpath = XPathFactory.newInstance().newXPath();

        Object dates_experience = xpath.evaluate("/html/body/div[3]/div/div/div[2]/div/div/div[2]/div[4]/div/div[3]/h4/span[2]", doc2, XPathConstants.NODESET);

        NodeList nodes = (NodeList) dates_experience;
        String s;

        for (int i = 0; i < nodes.getLength(); i++) {
            s = org.apache.commons.lang3.StringEscapeUtils.unescapeHtml4(nodes.item(i).getTextContent());
            System.out.println(s); 
        }



    }
    catch (Exception e){//Catch exception if any
        e.printStackTrace();
    }
}

我的 HTML 文件以 UTF-8 编码(如元标记中所写)。我的问题是输出。我明白了:

d?cembre 2010 - d?cembre 2010)
f?vrier 2010 - juin 2010)
juillet 2009 - septembre 2009)
juin 2009 - juin 2009)
juillet 2008 - ao?t 2008)

而不是这个,这是我想要的输出:

décembre 2010 - décembre 2010)
février 2010 - juin 2010)
juillet 2009 - septembre 2009)
juin 2009 - juin 2009)
juillet 2008 - août 2008)

你有什么想法来解决这个问题吗?

谢谢。

4

2 回答 2

1

如果您的意思是在 java 控制台中输出,您可以更改控制台编码。控制台编码是默认的操作系统编码。您可以在链接下面的 Eclipse 中进行更改。

http://decoding.wordpress.com/2010/03/18/eclipse-how-to-change-the-console-output-encoding/

如果你不使用 eclipse 你可以为 windows 添加系统参数

-Dfile.encoding=utf-8

你也可以试试

System.setOut(new PrintStream(System.out, true, "utf-8"));
于 2013-06-10T08:05:00.763 回答
0

我终于找到了答案。

我用 hexEdit 打开了我的 html 文件,我看到了一些奇怪的字节:“EF BF BD”。

这是因为我对 html 代码进行了右键单击/复制/粘贴。我不得不改变加载 html 文件的方式。

于 2013-06-11T14:19:56.310 回答