MultipartFile类型转换成File
方法来自于https://www.cnblogs.com/lshan/p/9557016.html
//MultipartFile类型转换成File
File file = null;
try {
String originalFilename = image_data.getOriginalFilename();
String[] filename = originalFilename.split("\\.");
file=File.createTempFile(filename[0], filename[1]);
image_data.transferTo(file);
file.deleteOnExit();
} catch (IOException e) {
e.printStackTrace();
}
//图片鉴黄
String s = checkImgUrl(file);
JSONObject jsonObject = JSONObject.parseObject(s);
String errcode = jsonObject.get("errcode").toString();
if(errcode == "" || !errcode.equals("0")){
return resultMap(Type.error, "图片不合格!", "", null, "", "501");
}
鉴黄方法
String url = "https://api.weixin.qq.com/wxa/img_sec_check?access_token=" +getAccessToken();
RequestBody builder = new MultipartBody.Builder()
.setType(MultipartBody.FORM)
.addFormDataPart("media",file.getName(), RequestBody.create(file, MediaType.parse("*/*")))
.build();
Request request = new Request.Builder()
.url(url)
.post(builder)
.build();
try (Response response = client.newCall(request).execute()) {
return Objects.requireNonNull(response.body()).string();
} catch (Exception e) {
e.printStackTrace();
}
return "";
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/38262.html