编程语言
首页 > 编程语言> > Freebase Java API全文检索

Freebase Java API全文检索

作者:互联网

是否可以在java api中使用“text”MQL扩展,因此您可以获得完整的描述文本.
我的意思是这样的:link但是对于java api.

解决方法:

您可以使用查询信封中的扩展参数在查询中启用MQL扩展.使用Philip在链接问题中提供的示例查询,如下所示:

JSON query = o(
  "id", "/en/jimi_hendrix",
  "/common/topic/article", a(o(
    "text", o(
      "maxlength", 16384,
      "chars", null
    )
  ))
);
JSON envelope = o("extended", 1);
JSON params = o();
Freebase freebase = Freebase.getFreebase();
JSON response = freebase.mqlread(query, envelope, params);
String text = response.get("result")
                      .get("/common/topic/article")
                      .get(0).get("text")
                      .get("chars")
                      .toString();

我应该指出,MQL扩展是Freebase API的一个实验性功能,并且在新版本的API中不支持它们.新API将通过Topic API或直接从Text API提供文本.

标签:java,freebase,mql
来源: https://codeday.me/bug/20191007/1864537.html