5

我正在使用boilerpipe,它看起来很棒,但我想输出JSON。我正在使用 Java 版本并在 NetBeans 中进行如下测试:

final URL url = new URL("http://mashable.com/2012/09/26/worlds-best-father-kickstarter-calendar");
System.out.println(ArticleExtractor.INSTANCE.getText(url));

谁能告诉我我该怎么做?

4

1 回答 1

2

Boilerpipe不附带JSON序列化程序。

但是,您可以这样做(假设您已经提取了所有数据):

public String articleTextToJson(String article, String title, String sourceUrl) {
    if (null == article) {
        return "{ \"error\" : { " +
               "       \"message\" : \"Article did not extract\", " +
               "       \"code\" : 1 " +
               "    }, " +
               "  \"status\" : \"error\" " +
               "}";
    }
    return "{ \"response\" : { " +
           "       \"title\" : \"" + title + "\" " +
           "       \"content\" : \"" + article + "\", " +
           "       \"source\" : \"" + sourceUrl + "\" " +
           "    }, " +
           "  \"status\" : \"success\" " +
           "}"
}

棘手的部分当然是获得标题......

或者更好的是使用一些JSONJSONObject这样的序列化程序。

希望有帮助。

于 2012-11-05T15:52:22.867 回答