91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java實現自動回復聊天機器人

發布時間:2020-10-02 07:18:15 來源:腳本之家 閱讀:762 作者:小黃鴨會發光丶 欄目:編程語言

本文實例為大家分享了java實現自動回復聊天機器人的具體代碼,供大家參考,具體內容如下

聊天機器人

調用網上現有的接口,然后解析數據

java實現自動回復聊天機器人

以上是演示圖片

源碼下載地址

基本工作流程就是,調用API,解析返回的數據

HttpUtil類,調用API,獲取返回的數據

package com;

import com.sun.org.apache.bcel.internal.generic.INSTANCEOF;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;

/**
 * Created by zf on 2017/2/27.
 */
public class HttpUtil {
 private static final String API = "xxxxxxxxxxxxxxxxx";
 private static String MSG;
 private static HttpUtil INSTANCE;

 public static HttpUtil getInstance() {
  if (INSTANCE == null) {
   INSTANCE = new HttpUtil();
  }
  return INSTANCE;
 }

 private HttpUtil() {
 }

 public String sendRequest2API(String msg) {
  if (msg.length() > 0) {
   this.MSG = msg;
   HttpURLConnection connection = null;
   StringBuilder response = new StringBuilder();
   try {
    URL url = new URL(API + MSG);
    connection = (HttpURLConnection) url.openConnection();
    connection.setRequestMethod("GET");
    connection.setConnectTimeout(8000);
    connection.setReadTimeout(8000);
    InputStream in = connection.getInputStream();
    BufferedReader reader = new BufferedReader(new InputStreamReader(in));
    String line;
    while ((line = reader.readLine()) != null) {
     response.append(line);
    }
   } catch (Exception e) {
    e.printStackTrace();
   } finally {
    if (connection != null) {
     connection.disconnect();
    }
    return response.toString();
   }
  }
  return null;
 }
}

UI類,界面

package com;

import com.google.gson.Gson;

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Date;

/**
 * Created by zf on 2017/2/27.
 */
public class MainUI {
 private JFrame jFrame;
 private JPanel jPanel;
 private JButton sendMsgBtn;
 private JTextArea msgTextArea;
 private JTextArea historyTextArea;
 private static String MSG;
 private static StringBuilder history = new StringBuilder();

 public MainUI() {
  jFrame = new JFrame("自動聊天");
  jPanel = new JPanel();
  sendMsgBtn = new JButton("發送");
  msgTextArea = new JTextArea("這里發生消息");
  historyTextArea = new JTextArea(20,20);
  historyTextArea.setBackground(new Color(255, 255, 255));
  jPanel.add(historyTextArea);
  jPanel.add(msgTextArea);
  jPanel.add(sendMsgBtn);
  jFrame.add(jPanel);
  jFrame.setSize(500, 500);
  jFrame.setLocationRelativeTo(null);
  jFrame.setVisible(true);

  sendMsgBtn.addActionListener(new ActionListener() {
   @Override
   public void actionPerformed(ActionEvent e) {
    MSG = msgTextArea.getText();
    history.append("我:" + "\n" + MSG + "\n");
    Gson gson = new Gson();
    RobotAnswer robotAnswer = gson.fromJson(HttpUtil.getInstance().sendRequest2API(MSG), RobotAnswer.class);
    history.append(robotAnswer.getAnswer());
    historyTextArea.setText(history.toString());
    System.out.println(history);
   }
  });
 }

 public static void main(String[] args) {
  new MainUI();
 }
}

機器人回復類

package com;

import java.util.Date;

/**
 * Created by zf on 2017/2/27.
 */
public class RobotAnswer {
 private int result;
 private String content;
 private String answer;

 public RobotAnswer() {
 }

 public String getAnswer() {
  if (result == 0) {
   answer = "AI:" + "\n" + content;
  } else {
   answer = ".....";
  }
  return answer;
 }
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

建湖县| 德清县| 永宁县| 邓州市| 苗栗县| 康乐县| 新化县| 大同县| 基隆市| 济源市| 伊宁市| 甘谷县| 石狮市| 体育| 兴山县| 萝北县| 叶城县| 云和县| 鄂托克前旗| 晴隆县| 西城区| 昌黎县| 太谷县| 通辽市| 安国市| 石河子市| 屏东县| 松桃| 兴宁市| 怀化市| 龙岩市| 大余县| 南郑县| 化州市| 土默特右旗| 南靖县| 正宁县| 张家口市| 九龙城区| 临颍县| 腾冲县|