使用前提与环境准备:服务开通与购买
Step By Step
1.参考API文档与公共参数文档获取相应请求参数
2.添加pom依赖
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-core</artifactId>
<version>4.5.25</version>
</dependency>
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-nlp-automl</artifactId>
<version>0.0.5</version>
</dependency>
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-alinlp</artifactId>
<version>1.0.16</version>
</dependency>
2.Code Sample
import com.aliyuncs.CommonRequest;
import com.aliyuncs.CommonResponse;
import com.aliyuncs.DefaultAcsClient;
import com.aliyuncs.IAcsClient;
import com.aliyuncs.exceptions.ClientException;
import com.aliyuncs.exceptions.ServerException;
import com.aliyuncs.profile.DefaultProfile;
//依存句法分析(电商)common request调用示例
public class YicunJuf {
public static void main(String[] args) {
// 创建DefaultAcsClient实例并初始化
DefaultProfile defaultProfile = DefaultProfile.getProfile(
"cn-hangzhou",
"XXXXXXXXXX",
"XXXXXXXXXX");
IAcsClient client = new DefaultAcsClient(defaultProfile);
// 创建API请求并设置参数
CommonRequest request = new CommonRequest();
// domain和version是固定值
request.setDomain("alinlp.cn-hangzhou.aliyuncs.com");
request.setVersion("2020-06-29");
//action name可以在API文档里查到
request.setSysAction("GetDpChEcom");//请求的接口名称
//put的参数可以在API文档查看到
request.putQueryParameter("ServiceCode", "alinlp");
request.putQueryParameter("Text", "小明爱中国");
request.putQueryParameter("TokenizerId", "ECOM");
try {
CommonResponse response = client.getCommonResponse(request);
System.out.println(response.getData());
} catch (ServerException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ClientException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
3.测试结果
{"RequestId":"9A776D50-DD8C-5B29-AB5A-B651178B5BE9","Data":"{\"result\":[{\"head\":2,\"pos\":\"NR\",\"id\":1,\"label\":\"SBV\",\"word\":\"小明\"},{\"head\":0,\"pos\":\"VV\",\"id\":2,\"label\":\"ROOT\",\"word\":\"爱\"},{\"head\":2,\"pos\":\"NR\",\"id\":3,\"label\":\"VOB\",\"word\":\"中国\"}],\"success\":true}"}
更多参考
快速入门
API参考-依存句法分析(电商)
SDK示例
阿里云自然语言处理PHP Core SDK使用Quick Start