安卓智能聊天機器人開發(一)


這個聊天機器人有點像前段時間很火的一個安卓應用——小黃雞

應用的實現其實很簡單,網上有許多關於智能機器人聊天的接口,我們只需要去調用對應的接口,遵守它的API開發規范,就可以獲取到我們想要的信息

這里我使用的接口是——圖靈機器人(http://www.tuling123.com/openapi/)

這個接口給我們返回的是Json字符串,我們只需要對它進行Json字符串解析,就可以實現這個應用。

 

開發步驟:

首先我們需要到這個圖靈機器人的官網去注冊一個賬號,他會給我們一個唯一Key,通過這個Key和對應的API開發規范,我們就可以進行開發了。

 

然后在這個(http://www.tuling123.com/openapi/cloud/access_api.jsp)網址里可以找到相關的開發介紹

比如:請求方式,參數,返回參數,包括開發范例,一些返回的編碼等信息

這里是官方提供的一個調用小案例(JAVA),這里我也順帶貼一下

 1 /** 調用圖靈機器人平台接口 
 2 * 需要導入的包:commons-logging-1.0.4.jar、 httpclient-4.3.1.jar、httpcore-4.3.jar 
 3 */ 
 4 public static void main(String[] args) throws IOException { 
 5 
 6      String INFO = URLEncoder.encode("北京今日天氣", "utf-8"); 
 7     String requesturl = "http://www.tuling123.com/openapi/api?key= 注冊激活返回的Apikey&info="+INFO; 
 8     HttpGet request = new HttpGet(requesturl); 
 9     HttpResponse response = HttpClients.createDefault().execute(request); 
10 
11     //200即正確的返回碼 
12     if(response.getStatusLine().getStatusCode()==200){ 
13         String result = EntityUtils.toString(response.getEntity()); 
14         System.out.println("返回結果:"+result); 
15     } 
16 }

 

好了,接下來開始實戰吧,這個應用我打算寫成兩篇文章

第一篇講下關於如何調用接口,從網上獲取數據,包括解析Json字符串

第二篇會把這些獲取的數據嵌入到安卓應用

 

首先,先寫一個工具類,這個工具類是用來獲取用戶輸入的信息並返回服務器提供的數據的

這里面用到了一個第三方提供的JAR包,Gson它是谷歌提供給我們用來使Json數據序列化和反序列化的

關於Gson的使用我之前寫過一篇筆記,不熟悉的朋友可以看看:Gson簡要使用筆記http://www.cnblogs.com/lichenwei/p/3987429.html

代碼如下:具體看注釋

  1 package com.example.utils;
  2 
  3 import java.io.ByteArrayOutputStream;
  4 import java.io.IOException;
  5 import java.io.InputStream;
  6 import java.io.UnsupportedEncodingException;
  7 import java.net.HttpURLConnection;
  8 import java.net.MalformedURLException;
  9 import java.net.URLEncoder;
 10 import java.util.Date;
 11 
 12 import android.util.Log;
 13 
 14 import com.example.pojo.Message;
 15 import com.example.pojo.Message.Type;
 16 import com.example.pojo.Result;
 17 import com.google.gson.Gson;
 18 
 19 /**
 20  * 
 21  * 獲取信息幫助類 傳入用戶輸入的字符,給出相對應的信息
 22  * 
 23  */
 24 public class GetDataUtils {
 25 
 26     private static final String API_KEY = "這里填寫官方提供的KEY";// 申請的API_KEY值
 27     private static final String URL = "http://www.tuling123.com/openapi/api";// 接口請求地址
 28 
 29     public String getChat(String msg) {//這個方法是獲取服務端返回回來的Json數據,msg為用戶輸入的信息
 30         String result = "";// 存放服務器返回信息的變量
 31         InputStream inputStream = null;
 32         ByteArrayOutputStream outputStream = null;
 33         try {
 34             // 進行資源請求
 35             java.net.URL url = new java.net.URL(getMsgUrl(msg));
 36             HttpURLConnection httpURLConnection = (HttpURLConnection) url
 37                     .openConnection();// 打開資源連接
 38 
 39             // HttpURLConnection參數設定
 40             httpURLConnection.setReadTimeout(5 * 1000);
 41             httpURLConnection.setConnectTimeout(5 * 1000);
 42             httpURLConnection.setRequestMethod("GET");
 43 
 44             inputStream = httpURLConnection.getInputStream();// 獲取一個輸入流接收服務端返回的信息
 45             int len = -1;
 46             byte[] bs = new byte[124];// 用來接收輸入流的字節數組
 47             outputStream = new ByteArrayOutputStream();// 用一個輸出流來輸出剛獲取的輸入流所得到的信息
 48 
 49             while ((len = inputStream.read(bs)) != -1) {// 從輸入流中讀取一定數量的字節,並將其存儲在緩沖區數組
 50                                                         // bs 中
 51                 outputStream.write(bs, 0, len);// 往輸入流寫入
 52             }
 53             outputStream.flush();// 清除緩沖區
 54             result = new String(outputStream.toByteArray());// 轉換成字符串
 55         } catch (MalformedURLException e) {
 56             e.printStackTrace();
 57         } catch (IOException e) {
 58             e.printStackTrace();
 59         } finally {
 60             // 關閉相關資源
 61             if (inputStream != null) {
 62                 try {
 63                     inputStream.close();
 64                 } catch (IOException e) {
 65                     e.printStackTrace();
 66                 }
 67             }
 68             if (outputStream != null) {
 69                 try {
 70                     outputStream.close();
 71                 } catch (IOException e) {
 72                     e.printStackTrace();
 73                 }
 74             }
 75         }
 76         Log.i("tuzi", "result:" + result);//打印測試日志
 77         return result;
 78     }
 79 
 80     private String getMsgUrl(String msg) throws UnsupportedEncodingException {
 81         String path = "";
 82         String info = URLEncoder.encode(msg, "UTF-8");// 轉換url編碼
 83         path = URL + "?key=" + API_KEY + "&info=" + msg;
 84         return path;
 85     }
 86     
 87     public Message getInfo(String msg){
 88         Message message=new Message();
 89         Gson gson=new Gson();
 90         try {
 91             Result result=gson.fromJson(getChat(msg), Result.class);//獲取到服務器返回的json並轉換為Result對象,Result對象可能不存在,會出現異常
 92             message.setMsg(result.getText());//message可能為空,需要捕獲異常
 93         } catch (Exception e) {
 94             //可能服務器沒有返回正常數據,也就存在着空白內容,需要捕獲異常
 95             message.setMsg("服務器繁忙,請稍后再試");
 96         }
 97         message.setTime(new Date());
 98         message.setType(Type.INCOME);
 99         return message;
100     }
101 
102 }

 

下面這2個是實體類,根據官網提供的示例,返回的Json字符串里包含:code狀態碼,text文本內容

 1 package com.example.pojo;
 2 /**
 3  * 
 4  * 用來映射返回Json字符串
 5  *
 6  */
 7 public class Result {
 8     
 9     private String code;
10     private String text;
11 
12     public String getCode() {
13         return code;
14     }
15     public void setCode(String code) {
16         this.code = code;
17     }
18     public String getText() {
19         return text;
20     }
21     public void setText(String text) {
22         this.text = text;
23     }
24 
25     
26     
27 }

 

 1 package com.example.pojo;
 2 
 3 import java.util.Date;
 4 
 5 public class Message {
 6     
 7     
 8     private String name;
 9     private String msg;
10     private Date time;
11     private Type type;
12     
13     public enum Type{//類型枚舉,發送,接收
14         INCOME,OUTCOME
15     }
16     public String getName() {
17         return name;
18     }
19 
20     public void setName(String name) {
21         this.name = name;
22     }
23 
24     public String getMsg() {
25         return msg;
26     }
27 
28     public void setMsg(String msg) {
29         this.msg = msg;
30     }
31 
32     public Date getTime() {
33         return time;
34     }
35 
36     public void setTime(Date time) {
37         this.time = time;
38     }
39 
40     public Type getType() {
41         return type;
42     }
43 
44     public void setType(Type type) {
45         this.type = type;
46     }
47 
48 
49 
50 }

 

編寫個測試類

 1 package com.example.test;
 2 
 3 import android.test.AndroidTestCase;
 4 import android.util.Log;
 5 
 6 import com.example.pojo.Message;
 7 import com.example.utils.GetDataUtils;
 8 
 9 public class GetDataUtilsTest extends AndroidTestCase {
10 
11     public void test(){
12         GetDataUtils dataUtils=new GetDataUtils();
13         Message message=dataUtils.getInfo("你好");
14         Message message1=dataUtils.getInfo("你是誰");
15         Message message2=dataUtils.getInfo("你知道JAVA是什么嗎");
16         Message message3=dataUtils.getInfo("下雨了,天好冷");
17         Log.i("兔子",message.getMsg());
18         Log.i("兔子",message1.getMsg());
19         Log.i("兔子",message2.getMsg());
20         Log.i("兔子",message3.getMsg());
21         
22     }
23          
24 }

在JAVA WEB里編寫測試單元用到的是Junit,需要導入jar包,在安卓開發里也有類似這樣的步驟

首先我們要在AndroidManifest.xml里的application標簽里添加

 <uses-library android:name="android.test.runner" />

然后在application外添加  

<instrumentation android:name="android.test.InstrumentationTestRunner" android:label="ceshi" android:targetPackage="com.example.androidchat" >
</instrumentation>

由於需要聯網別忘了給應用賦予網絡權限

   <uses-permission android:name="android.permission.INTERNET" />

這里是完整文件代碼:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
 3     package="com.example.androidchat"
 4     android:versionCode="1"
 5     android:versionName="1.0" >
 6 
 7     <uses-sdk
 8         android:minSdkVersion="8"
 9         android:targetSdkVersion="21" />
10 
11     <uses-permission android:name="android.permission.INTERNET" />
12 
13     <application
14         android:allowBackup="true"
15         android:icon="@drawable/ic_launcher"
16         android:label="@string/app_name"
17         android:theme="@style/AppTheme" >
18         <uses-library android:name="android.test.runner" />
19 
20         <activity
21             android:name=".MainActivity"
22             android:label="@string/app_name" >
23             <intent-filter>
24                 <action android:name="android.intent.action.MAIN" />
25 
26                 <category android:name="android.intent.category.LAUNCHER" />
27             </intent-filter>
28         </activity>
29     </application>
30 
31     <instrumentation
32         android:name="android.test.InstrumentationTestRunner"
33         android:label="ceshi"
34         android:targetPackage="com.example.androidchat" >
35     </instrumentation>
36 
37 </manifest>

看下我們的測試代碼效果圖:

 

好了,此時我們已經可以獲取到服務端的數據,並且接收到客戶端並做處理,下篇文章《安卓智能聊天機器人開發(二)》寫下關於如何嵌入到安卓應用里。

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM