java智能問答圖靈機(jī)器人AI接口(聚合數(shù)據(jù))

java類 JuHeChatUtil

五原ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為成都創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18982081108(備注:SSL證書合作)期待與您的合作!

import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLEncoder;
import java.util.HashMap;
import java.util.Map;

import org.apache.log4j.Logger;

import net.sf.json.JSONObject;

public class JuHeChatUtil {

 static Logger logger = Logger.getLogger(JuHeChatUtil.class);

 public static final String DEF_CHATSET = "UTF-8";
 public static final int DEF_CONN_TIMEOUT = 30000;
 public static final int DEF_READ_TIMEOUT = 30000;
 public static String userAgent = "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.66 Safari/537.36";
 // 配置您申請(qǐng)的KEY
 public static final String APPKEY = "2c*********************************";

 public static String get(String url) {
 return null;
 }

  public static void main(String[] args) {
 String a = JuHeChatUtil.getRequest1("今天天氣如何?");
 logger.info(a);
 }
 
 // 1.問答
 public static String getRequest1(String msg) {
 String result = null;
 String url = "http://op.juhe.cn/robot/index";// 請(qǐng)求接口地址
 Map params = new HashMap();// 請(qǐng)求參數(shù)
 params.put("key", APPKEY);// 您申請(qǐng)到的本接口專用的APPKEY
 params.put("info", msg);// 要發(fā)送給機(jī)器人的內(nèi)容,不要超過30個(gè)字符
 params.put("dtype", "json");// 返回的數(shù)據(jù)的格式,json或xml,默認(rèn)為json
 params.put("loc", "");// 地點(diǎn),如北京中關(guān)村
 params.put("lon", "");// 經(jīng)度,東經(jīng)116.234632(小數(shù)點(diǎn)后保留6位),需要寫為116234632
 params.put("lat", "");// 緯度,北緯40.234632(小數(shù)點(diǎn)后保留6位),需要寫為40234632
 params.put("userid", "");// 1~32位,此userid針對(duì)您自己的每一個(gè)用戶,用于上下文的關(guān)聯(lián)

 try {
  result = net(url, params, "GET");
  logger.info(result);
  JSONObject object = JSONObject.fromObject(result);
  if (object.getInt("error_code") == 0) {
  result = object.getJSONObject("result").getString("text");
  } else {
  result = object.get("error_code") + ":" + object.get("reason");
  }
 } catch (Exception e) {
  e.printStackTrace();
 }
 return result;
 }

 // 2.數(shù)據(jù)類型
 public static void getRequest2() {
 String result = null;
 String url = "http://op.juhe.cn/robot/code";// 請(qǐng)求接口地址
 Map params = new HashMap();// 請(qǐng)求參數(shù)
 params.put("dtype", "");// 返回的數(shù)據(jù)格式,json或xml,默認(rèn)json
 params.put("key", APPKEY);// 您申請(qǐng)本接口的APPKEY,請(qǐng)?jiān)趹?yīng)用詳細(xì)頁查詢

 try {
  result = net(url, params, "GET");
  JSONObject object = JSONObject.fromObject(result);
  if (object.getInt("error_code") == 0) {
  logger.info(object.get("result"));
  } else {
  logger.info(object.get("error_code") + ":" + object.get("reason"));
  }
 } catch (Exception e) {
  e.printStackTrace();
 }
 }

 /**
 *
 * @param strUrl 請(qǐng)求地址
 * @param params 請(qǐng)求參數(shù)
 * @param method 請(qǐng)求方法
 * @return 網(wǎng)絡(luò)請(qǐng)求字符串
 * @throws Exception
 */
 public static String net(String strUrl, Map params, String method) throws Exception {
 HttpURLConnection conn = null;
 BufferedReader reader = null;
 String rs = null;
 try {
  StringBuffer sb = new StringBuffer();
  if (method == null || method.equals("GET")) {
  strUrl = strUrl + "?" + urlencode(params);
  }
  URL url = new URL(strUrl);
  conn = (HttpURLConnection) url.openConnection();
  if (method == null || method.equals("GET")) {
  conn.setRequestMethod("GET");
  } else {
  conn.setRequestMethod("POST");
  conn.setDoOutput(true);
  }
  conn.setRequestProperty("User-agent", userAgent);
  conn.setUseCaches(false);
  conn.setConnectTimeout(DEF_CONN_TIMEOUT);
  conn.setReadTimeout(DEF_READ_TIMEOUT);
  conn.setInstanceFollowRedirects(false);
  conn.connect();
  if (params != null && method.equals("POST")) {
  try {
   DataOutputStream out = new DataOutputStream(conn.getOutputStream());
   out.writeBytes(urlencode(params));
  } catch (Exception e) {
   e.printStackTrace();
  }
  }
  InputStream is = conn.getInputStream();
  reader = new BufferedReader(new InputStreamReader(is, DEF_CHATSET));
  String strRead = null;
  while ((strRead = reader.readLine()) != null) {
  sb.append(strRead);
  }
  rs = sb.toString();
 } catch (IOException e) {
  e.printStackTrace();
 } finally {
  if (reader != null) {
  reader.close();
  }
  if (conn != null) {
  conn.disconnect();
  }
 }
 return rs;
 }

 // 將map型轉(zhuǎn)為請(qǐng)求參數(shù)型
 public static String urlencode(Map<String, Object> data) {
 StringBuilder sb = new StringBuilder();
 for (Map.Entry i : data.entrySet()) {
  try {
  sb.append(i.getKey()).append("=").append(URLEncoder.encode(i.getValue() + "", "UTF-8")).append("&");
  } catch (UnsupportedEncodingException e) {
  e.printStackTrace();
  }
 }
 return sb.toString();
 }
}

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。

網(wǎng)頁題目:java智能問答圖靈機(jī)器人AI接口(聚合數(shù)據(jù))
分享網(wǎng)址:http://muchs.cn/article30/ghshso.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供自適應(yīng)網(wǎng)站、ChatGPT、定制開發(fā)、App開發(fā)、網(wǎng)站導(dǎo)航網(wǎng)頁設(shè)計(jì)公司

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站建設(shè)網(wǎng)站維護(hù)公司