以下是英语转汉语一个main方法
import ;
import ;
import ;
import ;
import ;
import ;
import org.;
import org.;
import ;
import ;
import ;
import ;
import ;
import .*;
/**
* desc: <br>
* date: 2019/07/18
*
* @author wzf
*/
public class FanyiV3DemoInternalTest {
private static Logger logger = ();
private static final String YOUDAO_URL = "/api";
private static final String APP_KEY = "YOUR_APP_KEY";
private static final String APP_SECRET = "YOUR_APP_SECRET";
public static void main(String[] args) throws IOException {
Map<String,String> params = new HashMap<String,String>();
String q = "test";
String salt = (());
("from", "EN");
("to", "zh-CHS");
("signType", "v3");
String curtime = (() / 1000);
("curtime", curtime);
String signStr = APP_KEY + truncate(q) + salt + curtime + APP_SECRET;
String sign = getDigest(signStr);
("appKey", APP_KEY);
("q", q);
("salt", salt);
("sign", sign);
/** 处理结果 */
requestForHttp(YOUDAO_URL,params);
}
public static void requestForHttp(String url,Map<String,String> params) throws IOException {
/** 创建HttpClient */
CloseableHttpClient httpClient = ();
/** httpPost */
HttpPost httpPost = new HttpPost(url);
List<NameValuePair> paramsList = new ArrayList<NameValuePair>();
Iterator<<String,String>> it = ().iterator();
while(()){
<String,String> en = ();
String key = ();
String value = ();
(new BasicNameValuePair(key,value));
}
(new UrlEncodedFormEntity(paramsList,"UTF-8"));
("url:"+url);
(val -> {
("name:"+()+",value:"+());
});
/*CloseableHttpResponse httpResponse = (httpPost);
try{
Header[] contentType = ("Content-Type");
("Content-Type:" + contentType[0].getValue());
HttpEntity httpEntity = ();
String json = (httpEntity,"UTF-8");
(httpEntity);
(json);
(json);
}finally {
try{
if(httpResponse!=null){
();
}
}catch(IOException e){
("## release resouce error ##" + e);
}
}*/
}
/**
* 生成加密字段
*/
public static String getDigest(String string) {
if (string == null) {
return null;
}
char hexDigits[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
byte[] btInput = ();
try {
MessageDigest mdInst = ("SHA-256");
(btInput);
byte[] md = ();
int j = ;
char str[] = new char[j * 2];
int k = 0;
for (byte byte0 : md) {
str[k++] = hexDigits[byte0 >>> 4 & 0xf];
str[k++] = hexDigits[byte0 & 0xf];
}
return new String(str);
} catch (NoSuchAlgorithmException e) {
return null;
}
}
/**
*
* @param result 音频字节流
* @param file 存储路径
*/
private static void byte2File(byte[] result, String file) {
File audioFile = new File(file);
FileOutputStream fos = null;
try{
fos = new FileOutputStream(audioFile);
(result);
}catch (Exception e){
(());
}finally {
if(fos != null){
try {
();
} catch (IOException e) {
();
}
}
}
}
public static String truncate(String q) {
if (q == null) {
return null;
}
int len = ();
String result;
return len <= 20 ? q : ((0, 10) + len + (len - 10, len));
}
}