Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将其用作构建我的对话机器人的参考,但我偶然发现了一个错误。IE; System.out.println 不工作。我得到这个:请帮助如何删除它。提前致谢。
我的进口:
response.getTextList<String>不返回String所以这不兼容。你能做的是
response.getText
List<String>
String
for(String s:response.getText()){ System.out.println(s); }