java使用微信图片鉴黄

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");
        }

鉴黄方法

方法来自于stop eating的回答

  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 "";
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

缌唸

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值