import domain.Response;
import service.QuestionAnsweringService;
import service.impl.QuestionAnsweringServiceImpl;
import java.io.IOException;
import java.util.Scanner;
/**
* @BelongsProject: QuestionAnswering
* @BelongsPackage: PACKAGE_NAME
* @Author: shoanjen
* @CreateTime: 2023-01-31 20:44
* @Description: TODO
* @Version: 1.0
*/
public class Main {
private static final QuestionAnsweringService questionService=new QuestionAnsweringServiceImpl();
public static void main(String[] args) throws IOException {
Scanner scanner=new Scanner(System.in);
System.out.println("您好!我是菲菲,非常欢迎您的到来,有什么想和我聊聊的吗?以下为快捷指令示例,输入88退出聊天\n" +
" 天气:天气深圳\n" +
" 中英翻译:翻译i love you\n" +
" 智能聊天:你好\n" +
" 笑话:笑话\n" +
" 歌词⑴:歌词后来\n" +
" 歌词⑵:歌词后来-刘若英\n" +
" 计算⑴:计算1+1*2/3-4\n" +
" 计算⑵:1+1*2/3-4\n" +
" IP⑴:归属127.0.0.1\n" +
" IP⑵:127.0.0.1\n" +
" 手机⑴:归属13430108888\n" +
" 手机⑵:13430108888\n" +
" 成语查询:成语一生一世\n" +
" 五笔/拼音:好字的五笔/拼音\n");
while (true){
String key=scanner.nextLine();
//退出
if ("88".equalsIgnoreCase(key)){
System.out.println("欢迎下次使用");
break;
}else {
//获取响应的消息
Response response=questionService.msg(key);
if (response!=null && response.getResult()==0){
//获得响应的内容
System.out.println(response.getContent());
}else{
System.out.println("我听不懂你说什么,抱歉");
}
}
}
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
收起资源包目录
智能问答机器人.zip (22个子文件)
QuestionAnswering
pom.xml 1004B
src
test
java
Main.java 2KB
main
java
service
QuestionAnsweringService.java 352B
impl
QuestionAnsweringServiceImpl.java 951B
util
HttpUtil.java 2KB
domain
Request.java 409B
Response.java 317B
LICENSE 11KB
.idea
jarRepositories.xml 870B
uiDesigner.xml 9KB
vcs.xml 172B
workspace.xml 4KB
misc.xml 547B
compiler.xml 550B
.gitignore 184B
target
classes
service
impl
QuestionAnsweringServiceImpl.class 1KB
QuestionAnsweringService.class 239B
util
HttpUtil.class 2KB
domain
Request.class 2KB
Response.class 2KB
test-classes
Main.class 2KB
generated-test-sources
test-annotations
generated-sources
annotations
.gitignore 368B
共 22 条
- 1
资源推荐
资源预览
资源评论
5星 · 资源好评率100%
192 浏览量
124 浏览量
159 浏览量
107 浏览量
5星 · 资源好评率100%
137 浏览量
2018-11-02 上传
5星 · 资源好评率100%
153 浏览量
201 浏览量
2010-08-10 上传
182 浏览量
5星 · 资源好评率100%
102 浏览量
158 浏览量
132 浏览量
2022-01-19 上传
5星 · 资源好评率100%
2015-10-24 上传
2022-02-20 上传
资源评论
DaenCode
- 粉丝: 4572
- 资源: 9
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功