会话API调用

时间:2016-11-07 09:53:30

标签: java android-studio ibm-watson watson-conversation

我正在使用this作为构建我的Conversation bot的参考,但我偶然发现了一个错误。即; System.out.println无法正常工作。我得到这个:请帮助解决这个问题。提前谢谢。

Image enter image description here

我的进口: Imports

1 个答案:

答案 0 :(得分:1)

response.getText返回List<String>而非String,因此不兼容。你能做的是

for(String s:response.getText()){
System.out.println(s);
}