有人知道如何将ConceptNet数据库与Java连接吗?我搜索了不同的教程,检查了不同的论坛,但我仍然找不到正确的方法。
另外,我如何使用Java获取数据并将其发布到ConceptNet。
有些人告诉我,通过使用JSON或Flat Csv,我将实现查询的回复,但我不熟悉这两种技术,也不熟悉如何在ConceptNet数据库和Java中使用它们。
如果有人知道,请回复我...
以下是我从 ConceptNet 访问查询所做的操作。我使用了 org.apache.commons.io.IOUtils
和 org.json
maven 目录。希望这有帮助。
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.nio.charset.Charset;
import org.apache.commons.io.IOUtils;
import org.json.*;
public class httprequestpractice {
public static void main(String[] args) {
try {
// url containing the word to be indexed
String obj = "http://api.conceptnet.io/c/en/example";
// open HttpURLConnection
HttpURLConnection hp = (HttpURLConnection) new URL(obj)
.openConnection();
// set to request method to get
// not required since default
hp.setRequestMethod("GET");
// get the inputstream in the json format
hp.setRequestProperty("Accept", "application/json");
// get inputstream from httpurlconnection
InputStream is = hp.getInputStream();
// get text from inputstream using IOUtils
String jsonText = IOUtils.toString(is, Charset.forName("UTF-8"));
// get json object from the json String
JSONObject json = new JSONObject(jsonText);
// get the edges array from the JSONObject which contains all
// content
JSONArray edges = json.getJSONArray("edges");
// goes through the edges array
for (int x = 0; x < edges.length(); x++) {
// convert the first object of the json array into a jsonobject
// once it is a jsonobject you can use getString or getJSONArray
// to continue in getting info
System.out.println(
edges.getJSONObject(x));
}
is.close();
}
catch (Exception e) {
e.printStackTrace();
}
}
}