Java 调用 有道翻译API


利用有道API进行翻译
   
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.net.URL;
import java.net.URLConnection;
import java.net.URLEncoder;
import java.util.List;
import java.util.Map;


public class YoudaoTranslate {

 
 private String url = "http://fanyi.youdao.com/openapi.do";

 
 private String keyfrom = "";
 private String key = "";

 
 private String doctype = "xml";

 
 private String sendGet(String str) {

  // 编码成UTF-8
  try {
   str =URLEncoder.encode(str, "utf-8");
  } catch(UnsupportedEncodingException e) {
   e.printStackTrace();
  }

  StringBuffer buf = newStringBuffer();
  buf.append("keyfrom=");
  buf.append(keyfrom);
  buf.append("&key=");
  buf.append(key);
  buf.append("&type=data&doctype=");
  buf.append(doctype);
  buf.append("&version=1.1&q=");
  buf.append(str);

  String param =buf.toString();

  String result = "";
  BufferedReader in = null;
  try {
   StringurlName = url + "?" + param;
   URL realUrl =new URL(urlName);

   //打开和URL之间的连接
   URLConnectionconn = realUrl.openConnection();

   //设置通用的请求属性
   //conn.setRequestProperty("accept", "*
 public String getYouDaoValue(String str) {
  String result = null;

  // 发送GET请求翻译
  result = sendGet(str);

  // 处理XML中的值
  int re1 =result.indexOf("<errorCode>");
  int re2 =result.indexOf("</errorCode>");
  String in =result.substring(re1 + 11, re2);
  System.out.println("===========翻译是否成功============"+ in);

  if (in.equals("0")) {
   System.out.println("翻译正常");

   re1 =result.indexOf("<paragraph><![CDATA[");
   re2 =result.indexOf("]]></paragraph>");
   in =result.substring(re1 + 20, re2);
   System.out.println("==========有道翻译================"+ in);

   re1 =result.indexOf("<ex><![CDATA[");
   re2 =result.indexOf("]]></ex>");
   in =result.substring(re1 + 13, re2);
   System.out.println("==========有道词典-网络释义================"+ in);

  } else if (in.equals("20")){
   System.out.println("要翻译的文本过长");
   return"要翻译的文本过长";
  } else if (in.equals("30")){
   System.out.println("无法进行有效的翻译");
   return"无法进行有效的翻译";
  } else if (in.equals("40")){
   System.out.println("不支持的语言类型");
   return"不支持的语言类型";
  } else if (in.equals("50")){
   System.out.println("无效的key");
   return"无效的key";
  }

  return result;
 }

 public static void main(String[] args) {

  String str = "The weather isgood today";
 

 YoudaoTranslate test = newYoudaoTranslate();
  String temp =test.getYouDaoValue(str);
  System.out.println(temp);
 }

}


原文地址:http://blog.sina.com.cn/s/blog_4d641b4f010120vj.html

  • 1
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值