我正在尝试使用android studio制作聊天机器人,但我无法找到将其正确连接到AIML文件的方法,这里是我试过的代码
String request = s;
String response = chatSession.multisentenceRespond(request);
while (response.contains("<")) response = response.replace("<","<");
while (response.contains(">")) response = response.replace(">",">");
if(response.equals("Too much recursion in AIML"))
return "";
else
return response;
答案 0 :(得分:1)
我认为通过'整合',您的意思是您希望机器人扫描AIML
文件,并根据您提供的输入做出回应。
为此,您必须按照以下步骤操作:
assets
文件夹中。Program AB
这样的翻译来根据你输入的数据得到适当的回应。您可以参考this link开始使用它。