百度AI学习:四、自然语言处理-1.词法分析

package com.ye.ai.application;


import org.json.JSONObject;


import com.baidu.aip.nlp.AipNlp;


public class NlpSample {
//设置APPID/AK/SK
//    public static final String APP_ID = "你的 App ID";
//    public static final String API_KEY = "你的 Api Key";
//    public static final String SECRET_KEY = "你的 Secret Key";



    public static void main(String[] args) {
        // 初始化一个AipNlp
        AipNlp client = new AipNlp(APP_ID, API_KEY, SECRET_KEY);


        // 可选:设置网络连接参数
        client.setConnectionTimeoutInMillis(2000);
        client.setSocketTimeoutInMillis(60000);


        // 可选:设置代理服务器地址, http和socket二选一,或者均不设置
//        client.setHttpProxy("proxy_host", proxy_port);  // 设置http代理
//        client.setSocketProxy("proxy_host", proxy_port);  // 设置socket代理


        // 调用接口
        String text = "百度是一家高科技公司";
        JSONObject res = client.lexer(text, null);
        System.out.println(res.toString(2));


    }

}


跑出来的结果为:

{
  "text": "百度是一家高科技公司",
  "items": [
    {
      "formal": "",
      "basic_words": ["百度"],
      "loc_details": [],
      "item": "百度",
      "ne": "ORG",
      "byte_length": 4,
      "byte_offset": 0,
      "uri": "",
      "pos": ""
    },
    {
      "formal": "",
      "basic_words": ["是"],
      "loc_details": [],
      "item": "是",
      "ne": "",
      "byte_length": 2,
      "byte_offset": 4,
      "uri": "",
      "pos": "v"
    },
    {
      "formal": "",
      "basic_words": [
        "一",
        "家"
      ],
      "loc_details": [],
      "item": "一家",
      "ne": "",
      "byte_length": 4,
      "byte_offset": 6,
      "uri": "",
      "pos": "m"
    },
    {
      "formal": "",
      "basic_words": [
        "高",
        "科技"
      ],
      "loc_details": [],
      "item": "高科技",
      "ne": "",
      "byte_length": 6,
      "byte_offset": 10,
      "uri": "",
      "pos": "n"
    },
    {
      "formal": "",
      "basic_words": ["公司"],
      "loc_details": [],
      "item": "公司",
      "ne": "",
      "byte_length": 4,
      "byte_offset": 16,
      "uri": "",
      "pos": "n"
    }
  ],
  "log_id": 3563765471332697722
}

你可能感兴趣的:(JAVA)