必威体育Betway必威体育官网
当前位置:首页 > IT技术

使用google翻译 api 翻译中文成其他语言

时间:2019-06-02 23:42:03来源:IT技术作者:seo实验室小编阅读:60次「手机版」
 

google翻译api

public class Translate {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        translate("我想   喝水,我要回老家了");
    }


    public static String en = "";
    public static void translate(String cn) {
        String url = "http://translate.Google.cn/translate_a/single?client=gtx&sl=zh-CN&tl=en&dt=t&q=googleq="+cn.trim(); //sl,tl参数可换成其他国家
        String content = sendGet(url);
        content = getTransString(content);
        System.out.println(content);
    }

    public static String getTransString(String org) {
        String first = "\"Googleq=";
        String s = org.substring(org.indexof(first)+first.length(), org.indexOf("\",\""));
        return s;
    }


    public static String sendGet(String url) {
        stringbuilder result = new StringBuilder();
        BufferedReader in = null;
        try {
            URL realUrl = new URL(url);
            // 打开和URL之间的连接
            URLConnection connection = realUrl.openConnection();
            // 设置通用的请求属性
            connection.setrequestproperty("accept", "*/*");
            connection.setRequestProperty("connection", "Keep-Alive");
            connection.setRequestProperty("user-agent",
                    "Mozilla/4.0 (compatible; MSIE 6.0; windows NT 5.1;SV1)");
            connection.setRequestProperty("Accept-Charset", "UTF-8");
            connection.setRequestProperty("contentType", "UTF-8");
            // 建立实际的连接
            connection.connect();
            // 遍历所有的响应头字段
            // for (String key : map.keySet()) {
            // System.out.println(key + "--->" + map.get(key));
            // }
            // 定义 BufferedReader输入流来读取URL的响应
            in = new BufferedReader(new inputstreamreader(
                    connection.getInputStream(), "utf-8"));
            String line;
            while ((line = in.readLine()) != null) {
                result.APPend(line);
            }
        } catch (Exception e) {
            //System.out.println("发送GET请求出现异常!" + e);
            result = new StringBuilder("{\"resCode\":\"1\",\"errCode\":\"1001\",\"resData\":\"\"}");
            e.printstacktrace();
        }
        // 使用finally块来关闭输入流
        finally {
            try {
                if (in != null) {
                    in.close();
                }
            } catch (Exception e2) {
                e2.printStackTrace();
            }
        }

        return result.toString();
    }

    public static String sendPost(String url, String param) {

        printwriter out = null;
        BufferedReader in = null;
        StringBuilder result = new StringBuilder();
        try {
            URL realUrl = new URL(url);
            // 打开和URL之间的连接
            URLConnection conn = realUrl.openConnection();
            // 设置通用的请求属性
            conn.setRequestProperty("accept", "*/*");
            conn.setRequestProperty("connection", "Keep-Alive");
            conn.setRequestProperty("user-agent",
                    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
            conn.setRequestProperty("Accept-Charset", "UTF-8");
            conn.setRequestProperty("contentType", "UTF-8");
            // 发送POST请求必须设置如下两行
            conn.setDoOutput(true);
            conn.setDoInput(true);
            // 获取URLConnection对象对应的输出流
            out = new PrintWriter(conn.getoutputstream());
            // 发送请求参数
            out.print(param);
            // flush输出流的缓冲
            out.flush();
            // 定义BufferedReader输入流来读取URL的响应
            in = new BufferedReader(
                    new InputStreamReader(conn.getInputStream()));
            String line;
            while ((line = in.readLine()) != null) {
                result.append(line);
            }
        } catch (Exception e) {
            //System.out.println("发送 POST 请求出现异常!" + e);
            result = new StringBuilder("{\"resCode\":\"1\",\"errCode\":\"1001\",\"resData\":\"\"}");
            e.printStackTrace();
        }
        // 使用finally块来关闭输出流、输入流
        finally {
            try {
                if (out != null) {
                    out.close();
                }
                if (in != null) {
                    in.close();
                }
            } catch (IOException ex) {
                ex.printStackTrace();
            }
        }

        return result.toString();
    }

}

相关阅读

Google第一女神李飞飞,从洗碗工蜕变成为首席科学家

全世界有3.14 %

Android 4.0设计规范(附全文翻译pdf)

在拜读和翻译了Android design设计指导后,对比Android 4.0与Android2.3及之前版本的app设计指导,总结了Android 4.0设计的10大改变:1

给电商菜鸟的十道心法:先买FB和GoogleAdwards广告呀

5. 搜集目标客户名单正式展开电子商务冒险前,想办法为你的网店制造话题,以此来建立一个你的目标客户名单。这份名单可能来自于你过

如何将日语在线翻译成中文

如何将日语在线翻译成中文?日本的动漫产业非常发达,作为从小看日漫长大的我们,谁都想学习几句日语或者将我们的口头禅翻译为日语。所

从博百优看百度和google两大搜索引擎

这次博百优参赛,小女子没有准备的就参加了,因为刚来到这个公司不久。参加这个比赛,也是为了更好的学习seo方面的知识。这次第四届搜

分享到:

栏目导航

推荐阅读

热门阅读