今天写了软件构造的图像增强的代码。
package picture; import okhttp3.*; import org.json.JSONObject; import java.io.*; import java.nio.file.Files; import java.nio.file.Paths; import java.util.Base64; import java.net.URLEncoder; class Sample1 { public static final String API_KEY = "Pa5t30eD"; public static final String SECRET_KEY = "7DFSVbSOmj"; static final OkHttpClient HTTP_CLIENT = new OkHttpClient().newBuilder().build(); public static String getimage(String filepath) throws IOException{ MediaType mediaType = MediaType.parse("application/x-www-form-urlencoded"); // image 可以通过 getFileContentAsBase64("C:\fakepath\Snipaste_2023-11-29_11-54-05.png") 方法获取,如果Content-Type是application/x-www-form-urlencoded时,第二个参数传true String image = getFileContentAsBase64(filepath, true); RequestBody body = RequestBody.create(mediaType, "image="+image); Request request = new Request.Builder() .url("https://aip.baidubce.com/rest/2.0/image-process/v1/image_definition_enhance?access_token=" + getAccessToken()) .method("POST", body) .addHeader("Content-Type", "application/x-www-form-urlencoded") .addHeader("Accept", "application/json") .build(); Response response = HTTP_CLIENT.newCall(request).execute(); String jsonString =response.body().string(); JSONObject jsonObject = new JSONObject(jsonString); String imageValue = jsonObject.getString("image"); //System.out.println("Value of 'image': " + imageValue); return imageValue; } /** * 获取文件base64编码 * * @param path 文件路径 * @param urlEncode 如果Content-Type是application/x-www-form-urlencoded时,传true * @return base64编码信息,不带文件头 * @throws IOException IO异常 */ static String getFileContentAsBase64(String path, boolean urlEncode) throws IOException { byte[] b = Files.readAllBytes(Paths.get(path)); String base64 = Base64.getEncoder().encodeToString(b); if (urlEncode) { base64 = URLEncoder.encode(base64, "utf-8"); } return base64; } /** * 从用户的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"); } }
标签:总结,String,每日,base64,application,urlencoded,import,image From: https://www.cnblogs.com/syhxx/p/17871726.html