import com.huawei.hiai.nlu.model.ResponseResult; // 接口返回的结果类 import com.huawei.hiai.nlu.sdk.NLUAPIService; // 接口服务类 import com.huawei.hiai.nlu.sdk.NLUConstants; // 接口常量类 import com.huawei.hiai.nlu.sdk.OnResultListener; // 异步函数,执行成功的回调结果类
NLUAPIService.getInstance().init(context, new OnResultListener<Integer>(){ @Override public void onResult(Integer result) { // 初始化成功回调,在服务初始化成功调用该函数 } },true);
该方法的三个参数说明:
String requestJson = "{text:'我要看电影魔兽',module:'movie'}"; ResponseResult respResult = NLUAPIService.getInstance().getEntity(requestJson, NLUConstants.REQUEST_TYPE_LOCAL); if (null != respResult) { //获取接口返回结果,参考接口文档返回使用 String result = respResult.getJsonRes(); } Module ----可选参数 ,不填的时候所有实体都分析
//待分析文本 String requestJson = "{text:'我要看电影魔兽',module:'movie'}"; //调用接口 NLUAPIService.getInstance().getEntity(requestJson, NLUConstants.REQUEST_TYPE_LOCAL, new OnResultListener<ResponseResult>(){ @Override public void onResult(ResponseResult respResult) { //异步返回 if(null != respResult && ErrorCode.SUCCESS_RESULT == respResult.getCode()){ //获取接口返回结果,参考接口文档返回使用 String result = respResult.getJsonRes(); } } });
NLUAPIService.getInstance().onDestroy ();
下图是输入“我要看电影魔兽” 文本,nlu分析返回的结果: