使用JsonReader在Java中使用Neo4j REST API解析Cypher查询的JSON结果

问题描述 投票:0回答:1

我目前编写了一个程序,用于检索我使用REST API对Neo4j数据库进行的Cypher查询的JSON结果。这个项目是用Android Studio编写的,下面列出了它的代码:

public class MainActivity extends AppCompatActivity {

private TextView userText;
private Button clicker;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    userText = (TextView) findViewById(R.id.txtUsername);
    clicker = (Button) findViewById(R.id.btnClick);
    clicker.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            //The REST API needs it's own thread for Neo4j connection. Read up on this documentation.
            AsyncTask.execute(new Runnable() {
                @Override
                public void run() {
                    try {
                        //The URL will change based on what is needed for the documentations.
                        //Provides the address for the HTTP communication.
                        String neo4jURL = "http://ec2-35-176-79-15.eu-west-2.compute.amazonaws.com:7474/db/data/cypher";
                        //Helps to create the JSON object used by the query.
                        //QueryData neo4jqueryData = new QueryData();
                        //Creates the client used for the connection.
                        HttpClient neo4jClient = new DefaultHttpClient();
                        //Assigns the address to either the HttpGet or HttpPost request.
                        HttpPost neo4jRequest = new HttpPost(neo4jURL);
                        //Creates the JSON Attributes that will be used as part of the query.
                        String query = "MATCH (n:Student) WHERE n.Username=\'cs16thm\' RETURN n.StudentID";
                        JSONObject neo4jJSON = new JSONObject();
                        neo4jJSON.put("query",query);
                        //neo4jJSON.put("params","");
                        String check = neo4jJSON.toString();
                        Log.d("JSON",check);
                        StringEntity queryString = new StringEntity(check,"UTF-8");
                        //Ensures that the application type is JSON.
                        queryString.setContentType("application/json");
                        //Adds the Attribute data to the JSON query.
                        neo4jRequest.setEntity(queryString);
                        //Adds the Headers to the query.
                        //bmVvNGo6Z3JvdXAzNw== is the Base64 encoding of the username and password.
                        neo4jRequest.setHeader("Authorization","Basic bmVvNGo6Z3JvdXAzNw==");
                        //Shows the data types that would be accepted by the query result.
                        neo4jRequest.setHeader("Accept", "application/json; charset=UTF-8");
                        //Used to show the data type being sent to the server.
                        neo4jRequest.setHeader("Content-Type", "application/json");
                        //Performs the neo4j query.
                        HttpResponse queryResult = neo4jClient.execute(neo4jRequest);
                        //Checks the status code of the request.
                        int statusCode = queryResult.getStatusLine().getStatusCode();
                        if (statusCode == 200){
                            Log.d("CONNECT","Query Made " + Integer.toString(statusCode));
                            //Gets the results stream from the connection. Results is returned as a JSON which needs to be parsed.
                            InputStreamReader resultsReader = new InputStreamReader(queryResult.getEntity().getContent());
                            JsonReader JsonReader = new JsonReader(resultsReader);
                            //Begins processing of the JSON results.
                            JsonReader.beginObject();
                            //Checks all of the parameter keys returned by the document.
                            Log.d("PARSE","Begin JSON Parse");
                            while(JsonReader.hasNext()){
                                //Gathers the name of the current key.
                                String resultKey = JsonReader.nextName();
                                Log.d("RESULT","Entered Loop " + resultKey);
                                //Checks if it's the data we're looking for, and if it contains a value.
                                if(resultKey.equals("data") && JsonReader.peek() != JsonToken.NULL){
                                    Log.d("RESULT","Entered IF Block");
                                    //Begin array needs to go here.
                                    JsonReader.beginArray();
                                    //Gathers the String value that we require.
                                    String result = JsonReader.nextString();
                                    //Shows the result in the application.
                                    Log.d("RESULT","Result=" + result);
                                    //Prevents further loop execution now that our data is retrieved.
                                    JsonReader.endArray();
                                    break;
                                } else {
                                    //Skips to the next value if the current one contains nothing of interest.
                                    JsonReader.skipValue();
                                }
                            }
                            Log.d("PARSE","End JSON Parse");
                            JsonReader.endObject();
                            //JsonReader.endObject();
                            //Closes the JSON reader after task to prevent resource hogging.
                            JsonReader.close();
                        } else {
                            Log.d("ERROR", "Request not made " + Integer.toString(statusCode));
                        }


                    } catch (MalformedURLException e) {
                        e.printStackTrace();
                        Log.d("ERROR", "Bad URL");
                    } catch (IOException ioe) {
                        ioe.printStackTrace();
                        Log.d("ERROR", "Cannot Connect");
                    } catch (Exception par){
                        par.printStackTrace();
                        Log.d("ERROR", "Parse Fail");
                    }
                }
            });
        }
    });
}
}

查询成功,生成HTTP 200代码并且代码正常运行,直到Expected a string but was BEGIN_ARRAY行抛出错误消息IllegalStateExceptionString result = JsonReader.nextString();。为了尝试解决此错误,我将JsonReader.beginArray()JsonReader.endArray()行添加到异常抛出语句之前和之后的代码中。但是,仍然为同一行代码生成相同的错误消息。基于Neo4j文档:(https://neo4j.com/docs/rest-docs/current/,第3.6节),我将解析的JSON结果应遵循与此示例类似的格式:

 {
  "columns" : ["n.StudentID"],
  "data" : [ ["1607174"] ]
}

最后,代码目前使用Apache Http Client和Google Simple JSON llibraries以防万一。任何有关此问题的见解或解决方案都会受到极大的关注,如果您有任何其他问题,请随时提出。此外,任何其他可以让我正确解析此JSON结果的建议也会受到欢迎。

java android json rest neo4j
1个回答
0
投票

数据有嵌套数组:[[]]

"data" : [ ["1607174"] ]

所以你需要开始内部数组。

JsonReader.beginArray(); // outer
 JsonReader.beginArray(); // inner
 String result = JsonReader.nextString();

附:如果它可能有多个值,则遍历内部数组

© www.soinside.com 2019 - 2024. All rights reserved.