我正在使用watson服务并尝试为我的应用程序构建一个聊天框,来自watson API的响应采用JSON的形式,如下所示:
{
"context": {
"conversation_id": "00d5c35d-ab4e-47d3-a7fd-2b78d57df59f",
"system": {
"dialog_stack": [
{
"dialog_node": "root"
}
],
"dialog_turn_counter": 1.0,
"dialog_request_counter": 1.0,
"_node_output_map": {
"node_4_1487236585212": [
0.0
]
},
"dialog_in_progress": false
}
},
"entities": [],
"intents": [
{
"confidence": 1.0,
"intent": "Hello"
},
{
"confidence": 0.0,
"intent": "GoodBye"
}
],
"output": {
"log_messages": [],
"text": [
"Welcome to my conversation app"
],
"nodes_visited": [
"node1"
]
},
"input": {
"text": "hii"
}
}
现在在我的应用程序中,我需要获取"输出"的数据。来自JSON响应的密钥," text"来自"输出"键。
我想做的是如下:
MessageRequest options = new MessageRequest.Builder().inputText(message).alternateIntents(true).context(context).build();
MessageResponse response = service.message("93576d15-15a9-4029-bc07-41da7f2efa39", options).execute();
context = response.getContext();
/*System.out.println(context);*/
System.out.println(response);
try {
JSONObject contObj = new JSONObject(response);
System.out.println(contObj.getString("output"));
JSONObject contObj1 = new JSONObject(contObj);
System.out.println(contObj1);
System.out.println("TEXT OUTPUT"+contObj1.getString("text"));
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
现在sysout包含"输出"给出正确的值,但包含" text"的sysout给出null。 任何帮助将受到高度赞赏。感谢
答案 0 :(得分:0)
“文字”不是字符串。这是一个数组。这就是contObj.getString("text")
无效的原因。
我不知道Java的语法,但在Javascript中你可以像output.text[0]
那样访问它,所以你应该在你的代码中做同样的事情。
答案 1 :(得分:0)
嗨,经过在各种网站上搜索相同的麻烦,并且没有得到任何帮助,我尝试使用eclipse的 ctrl + space 选项,最终得到了相同的解决方案。那些可能在将来遇到此类问题的人可以参考下面的代码以供参考。
JSONObject contObj = new JSONObject(res);
outputText = (contObj.getJSONObject("output").getJSONArray("text").get(0).toString());
System.out.println("outputText: "+outputText);
这是我为获得所需输出所做的工作。感谢所有在这个问题上帮助过我的人。