使用前提与环境准备:服务开通与购买
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 ZongXinct {
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("GetKeywordChEcom");//请求的接口名称
//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":"B2DBDD93-2A69-584C-B4D0-72815D209B71","Data":"{\"result\":{\"output\":[\"裙子\"]},\"success\":true,\"tracerId\":\"B2DBDD93-2A69-584C-B4D0-72815D209B71\"}"}
更多参考
快速入门
API参考-中心词提取(中文)
SDK示例
阿里云自然语言处理PHP Core SDK使用Quick Start