代码如下:
package com.google;
import com.google.api.translate.*;
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
// 设置应用程序通过指定的代理访问互联网
System.getProperties().put("proxySet","true");
System.getProperties().put("proxyHost","172.16.132.34"); //代理IP
System.getProperties().put("proxyPort","808"); //代理的端口
String cn="测试";
try{
//调用Google的Translate类的translate方法,将中文翻译成英文
String out=Translate.translate(cn, Language.CHINESE_SIMPLIFIED, Language.ENGLISH);
System.out.println("The Result:"+out);
}catch(Exception ex){
ex.printStackTrace();
System.out.println("Err");
}
}
}