且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

阿里云自然语言处理--文本纠错(中文)Java 调用示例

更新时间:2022-01-20 08:54:54

使用前提与环境准备:服务开通与购买


Step By Step

1.参考API文档与公共参数文档获取相应请求参数

阿里云自然语言处理--文本纠错(中文)Java 调用示例

  • 公共参数说明

阿里云自然语言处理--文本纠错(中文)Java 调用示例

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 WenBenjiuc {
    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("GetEcChGeneral");//请求的接口名称
        //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":"CA754C3C-9A9A-540C-BC97-E6F9F8FEB3C1","Data":"{\"result\":{\"edits\":[{\"tgt\":\"蕉\",\"pos\":11,\"src\":\"姣\",\"confidence\":0.8805544371571165,\"type\":\"SpellingError\"}],\"source\":\"我今天吃苹果,明天吃香姣\",\"target\":\"我今天吃苹果,明天吃香蕉\"},\"success\":true,\"tracerId\":\"12a10c17b58279135bd5b4d9cc2ba441\"}"}

更多参考

快速入门
API参考-文本纠错
SDK示例
阿里云自然语言处理PHP Core SDK使用Quick Start