使用Java restful HTTP连接到OrientDB服务器

时间:2014-07-09 00:27:43

标签: java rest http orientdb

我在本地计算机上运行OrientDB服务器,到目前为止,我唯一拥有的数据库是GratefulDead。我尝试使用本教程连接到服务器:https://github.com/orientechnologies/orientdb/wiki/OrientDB-REST

但是,我总是得到一个204 HTTP代码,即使教程说我应该得到200个http代码。

public void getConnection() throws MalformedURLException {
    BufferedReader rd;
    String line;
    Authenticator.setDefault( new Authenticator(){
         protected PasswordAuthentication getPasswordAuthentication(){
            return new PasswordAuthentication("admin", "admin".toCharArray());
        }
    });
    URL url = new URL("http://localhost:2480/connect/GratefulDeadConcerts");
    HttpURLConnection connection = null;
    try {
        connection = (HttpURLConnection) url.openConnection();
        connection.setRequestMethod("GET");
        Map<String, List<String>> map = connection.getHeaderFields();
        for (Map.Entry<String, List<String>> entry : map.entrySet()) {
            System.out.println("Key : " + entry.getKey() +  " ,Value : " + entry.getValue());
        }
        rd = new BufferedReader(new InputStreamReader(connection.getInputStream()));
        while ((line = rd.readLine()) != null) {
            System.out.println("Hello " + line);
        }
        rd.close();
    } catch (IOException e) {
        e.printStackTrace();
    } catch (Exception e) {
        e.printStackTrace();
    }
}

1 个答案:

答案 0 :(得分:1)

文档未更新。它返回204(好,但没有内容)。如果您需要数据库信息,请在登录后调用“database”命令:

http://localhost:2480/database/GratefulDeadConcerts

返回数据库信息。