今天上了软件构造课程。
百度机器翻译SDK实验
package translate; import okhttp3.*; import org.json.JSONArray; import org.json.JSONObject; import java.io.*; class Sample { public static final String API_KEY = "0r"; public static final String SECRET_KEY = "hiL2"; static final OkHttpClient HTTP_CLIENT = new OkHttpClient().newBuilder().build(); public static String getResulten(String ss) throws IOException{ MediaType mediaType = MediaType.parse("application/json"); RequestBody body = RequestBody.create(mediaType, "{\"from\":\"zh\",\"to\":\"en\",\"q\":\""+ss+"\"}"); Request request = new Request.Builder() .url("https://aip.baidubce.com/rpc/2.0/mt/texttrans/v1?access_token=" + getAccessToken()) .method("POST", body) .addHeader("Content-Type", "application/json") .addHeader("Accept", "application/json") .build(); Response response = HTTP_CLIENT.newCall(request).execute(); //System.out.println(response.body().string()); String jsonString = response.body().string(); JSONObject jsonObject = new JSONObject(jsonString); JSONObject result = jsonObject.getJSONObject("result"); JSONArray transResult = result.getJSONArray("trans_result"); JSONObject translate = transResult.getJSONObject(0); String src = translate.getString("src"); String dst = translate.getString("dst"); System.out.println("src: " + src); System.out.println("dst: " + dst); return dst; } public static String getResultzh(String ss) throws IOException{ MediaType mediaType = MediaType.parse("application/json"); RequestBody body = RequestBody.create(mediaType, "{\"from\":\"en\",\"to\":\"zh\",\"q\":\""+ss+"\"}"); Request request = new Request.Builder() .url("https://aip.baidubce.com/rpc/2.0/mt/texttrans/v1?access_token=" + getAccessToken()) .method("POST", body) .addHeader("Content-Type", "application/json") .addHeader("Accept", "application/json") .build(); Response response = HTTP_CLIENT.newCall(request).execute(); //System.out.println(response.body().string()); String jsonString = response.body().string(); JSONObject jsonObject = new JSONObject(jsonString); JSONObject result = jsonObject.getJSONObject("result"); JSONArray transResult = result.getJSONArray("trans_result"); JSONObject translate = transResult.getJSONObject(0); String src = translate.getString("src"); String dst = translate.getString("dst"); System.out.println("src: " + src); System.out.println("dst: " + dst); return dst; } public static void main(String[] args) throws IOException { String ss=Sample.getResulten("你好"); String sss=Sample.getResultzh("hello"); System.out.println(ss); System.out.println(sss); } /** * 从用户的AK,SK生成鉴权签名(Access Token) * * @return 鉴权签名(Access Token) * @throws IOException IO异常 */ static String getAccessToken() throws IOException { MediaType mediaType = MediaType.parse("application/x-www-form-urlencoded"); RequestBody body = RequestBody.create(mediaType, "grant_type=client_credentials&client_id=" + API_KEY + "&client_secret=" + SECRET_KEY); Request request = new Request.Builder() .url("https://aip.baidubce.com/oauth/2.0/token") .method("POST", body) .addHeader("Content-Type", "application/x-www-form-urlencoded") .build(); Response response = HTTP_CLIENT.newCall(request).execute(); return new JSONObject(response.body().string()).getString("access_token"); } }
标签:总结,body,String,JSONObject,每日,System,println,dst From: https://www.cnblogs.com/syhxx/p/17865717.html