第一步,申请API key,申请地址:http://fanyi.youdao.com/openapi?path=data-mode

数据接口:

http://fanyi.youdao.com/openapi.do?keyfrom=<keyfrom>&key=<key>&type=data&doctype=<doctype>&version=1.1&q=要翻译的文本

版本:1.1,请求方式:get,编码方式:utf-8

主要功能:中英互译,同时获得有道翻译结果和有道词典结果(可能没有)

参数说明:

 type - 返回结果的类型,固定为data

 doctype - 返回结果的数据格式,xml或json或jsonp

 version - 版本,当前最新版本为1.1

 q - 要翻译的文本,不能超过200个字符,需要使用utf-8编码

errorCode:

 0 - 正常

 20 - 要翻译的文本过长

 30 - 无法进行有效的翻译

 40 - 不支持的语言类型

 50 - 无效的key

json数据格式举例

请求链接:http://fanyi.youdao.com/openapi.do?keyfrom=<keyfrom>&key=<key>&type=data&doctype=json&version=1.1&q=翻译

返回的json数据:

{

"errorCode":0

"query":"翻译",

"translation":["translation"], // 有道翻译

"basic":{ // 有道词典-基本词典

"phonetic":"fān yì",

"explains":[

"translate",

"interpret"

]

},

"web":[ // 有道词典-网络释义

{

"key":"翻译",

"value":["translator","translation","translate","Interpreter"]

},

{...}

]

}

下面实现android客户端功能。

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@drawable/a">
<EditText
android:id="@+id/edit"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="输入你要查询的内容......" />
<Button
android:id="@+id/search"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="查询" />
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="none" >
<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#000000"/>
</ScrollView>
</LinearLayout>

实现效果如下:

 
MainActivity.java
import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;
import org.json.JSONArray;
import org.json.JSONObject;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends Activity {
private EditText edit = null;
private Button search = null;
private TextView text = null;
private String YouDaoBaseUrl = "http://fanyi.youdao.com/openapi.do";
private String YouDaoKeyFrom = "你的daoKeyFrom";
private String YouDaoKey = "你的api key";
private String YouDaoType = "data";
private String YouDaoDoctype = "json";
private String YouDaoVersion = "1.1";
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
init();
}
private void init() {
edit = (EditText) findViewById(R.id.edit);
search = (Button) findViewById(R.id.search);
search.setOnClickListener(new searchListener());
text = (TextView) findViewById(R.id.text);
}
private class searchListener implements OnClickListener {
@Override
public void onClick(View v) {
String YouDaoSearchContent = edit.getText().toString().trim();
String YouDaoUrl = YouDaoBaseUrl + "?keyfrom=" + YouDaoKeyFrom
+ "&key=" + YouDaoKey + "&type=" + YouDaoType + "&doctype="
+ YouDaoDoctype + "&type=" + YouDaoType + "&version="
+ YouDaoVersion + "&q=" + YouDaoSearchContent;
try {
AnalyzingOfJson(YouDaoUrl);
} catch (Exception e) {
e.printStackTrace();
}
}
}
private void AnalyzingOfJson(String url) throws Exception {
// 第一步,创建HttpGet对象
HttpGet httpGet = new HttpGet(url);
// 第二步,使用execute方法发送HTTP GET请求,并返回HttpResponse对象
HttpResponse httpResponse = new DefaultHttpClient().execute(httpGet);
if (httpResponse.getStatusLine().getStatusCode() == 200) {
// 第三步,使用getEntity方法活得返回结果
String result = EntityUtils.toString(httpResponse.getEntity());
System.out.println("result:" + result);
JSONArray jsonArray = new JSONArray("[" + result + "]");
String message = null;
for (int i = 0; i < jsonArray.length(); i++) {
JSONObject jsonObject = jsonArray.getJSONObject(i);
if (jsonObject != null) {
String errorCode = jsonObject.getString("errorCode");
if (errorCode.equals("20")) {
Toast.makeText(getApplicationContext(), "要翻译的文本过长",
Toast.LENGTH_SHORT);
} else if (errorCode.equals("30 ")) {
Toast.makeText(getApplicationContext(), "无法进行有效的翻译",
Toast.LENGTH_SHORT);
} else if (errorCode.equals("40")) {
Toast.makeText(getApplicationContext(), "不支持的语言类型",
Toast.LENGTH_SHORT);
} else if (errorCode.equals("50")) {
Toast.makeText(getApplicationContext(), "无效的key",
Toast.LENGTH_SHORT);
} else {
// 要翻译的内容
String query = jsonObject.getString("query");
message = query;
// 翻译内容
String translation = jsonObject
.getString("translation");
message += "\t" + translation;
// 有道词典-基本词典
if (jsonObject.has("basic")) {
JSONObject basic = jsonObject
.getJSONObject("basic");
if (basic.has("phonetic")) {
String phonetic = basic.getString("phonetic");
message += "\n\t" + phonetic;
}
if (basic.has("explains")) {
String explains = basic.getString("explains");
message += "\n\t" + explains;
}
}
// 有道词典-网络释义
if (jsonObject.has("web")) {
String web = jsonObject.getString("web");
JSONArray webString = new JSONArray("[" + web + "]");
message += "\n网络释义:";
JSONArray webArray = webString.getJSONArray(0);
int count = 0;
while (!webArray.isNull(count)) {
if (webArray.getJSONObject(count).has("key")) {
String key = webArray.getJSONObject(count)
.getString("key");
message += "\n\t<" + (count + 1) + ">"
+ key;
}
if (webArray.getJSONObject(count).has("value")) {
String value = webArray
.getJSONObject(count).getString(
"value");
message += "\n\t   " + value;
}
count++;
}
}
}
}
}
text.setText(message);
} else {
Toast.makeText(getApplicationContext(), "提取异常", Toast.LENGTH_SHORT);
}
}
}

运行效果如下:

 
 
最后,勿忘添加Manifest.xml权限
    <uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>

Android有道词典开发相关推荐

  1. android简单的有道词典开发

    简单的android有道词典开发 第一次写教程,不好勿怪哈!其实想写这篇教程已经很久了,但却一直没有付诸行动,这个项目是偶然间在论坛里发现的,我算是弄出来整理了一下吧!所以在此要感谢那些前辈们,没有他 ...

  2. Android进阶2之有道词典开发

    本博文只是实现有道词典的功能,并着重界面. 首先,你需要获取有道开发平台的API key.点击打开链接 申请一个吧. 利用数据接口获取数据: http://fanyi.youdao.com/opena ...

  3. android学习-有道词典开发实例

    最近学习android程序开发,在网看上到一个关于android手机开发有道词典的例子.但是,并不能正常运行,现在个人改进版本源代码和思路献上之供学习之用. 第一步,申请API key,申请地址:ht ...

  4. android有道词典简单开发

    Android剪切板(ClipBoardManager)复制的内容,可以粘贴到任何地方,对于一些词典,翻译工具等app具有较高的使用价值.有道词典在3.6版本后就使用到该功能,本文来剖析具体的实现过程 ...

  5. Android有道词典查询功能

    有道词典 任务要求:完成查词等功能 因为需要申请API key,这里直接给出地址供使用:http://fanyi.youdao.com/openapi?path=data-mode 1.activit ...

  6. 关于android有道词典的修改

    本文是关于第一篇博文里的项目布局的修改 将main.xml里面的绝对布局改为线性布局即可,感觉这样看起来舒服些! <?xml version="1.0" encoding=& ...

  7. 简易词典Android界面代码,Android 有道词典的简单实现方法介绍

    第一步:思路解析 从界面看一共用了三个控件EditText,Button,WebView.其实是四个,是当我们查询内容为空的时候用来提示的Toast控件.我们在EditText输入查询内容,这里包括中 ...

  8. android 网页词典,android 有道词典查询单词(webview版)

    [实例简介] [实例截图] [核心代码] package com.example.youdaodictionary; import android.app.Activity; import andro ...

  9. 有道词典之父:曾梦想执笔去教书,却转岗当上CEO

    周枫分别于2000年和2002年在清华大学获得计算机学士和硕士学位,2007年于加州大学伯克利分校获得博士学位,主要研究兴趣是面向大规模服务的软件基础设施.操作系统和编程语言. 现任网易高级副总裁,网 ...

最新文章

  1. DRBD数据同步部署-centos7
  2. 走进SQL Server 2005:备份与恢复功能
  3. c语言4x4矩形转置,最快的转置4x4字节矩阵的方法。
  4. docker安装logstash及logstash配置
  5. RTC 音频质量评价和保障
  6. c#中实现图像图像卷积与滤波-高斯平滑
  7. iOS UI 18 数据库
  8. Linux删除特殊字符文件
  9. 什么样的网站建设公司才是值得信赖的?
  10. HTML+CSS+JS实现计算机功能
  11. HDU1181 变形课【DFS】(废除)
  12. 面向对象——类设计(一)
  13. Ubuntu16.04 + Digits + caffee
  14. SQL查询分析器SQL语句导入TXT文件
  15. Cisco 路由器作业1.1 路由器初始化配置
  16. 用快递100接口查询各快递物流信息
  17. 计算机磁盘扩展,win7如何对硬盘进行扩展分区
  18. 碗中有米,心中有他,他解决的不只是吃饭问题......
  19. halcon学习拓展系列—弱边缘缺陷检测方法汇总之频域方法(一)
  20. 被迫改变生活方式对少数族群的微生物群和健康的影响

热门文章

  1. VideoSolo Blu ray Player for Mac(mac蓝光播放器)
  2. canvas+gif.js打造自己的数字雨头像
  3. Excel_利用公式提取工作表的名称
  4. c语言从键盘输入十个整数,冒泡法从大到小排序
  5. 严重: The web application [] appears to have started a thread named [Thread-
  6. 香港科大研发出Germagic杀菌涂层,可杀灭新冠病毒
  7. Cell Stem Cell | 动物所刘光慧等显示年轻血液可逆转衰老进程
  8. python 微信公众号发文章_如何使用 Python 爬取微信公众号文章
  9. 阿里巴巴国际站产品标题优化技巧
  10. xcode和macos对应版本参考