RestTemplate远程调用文件上传-multipart/form-data

本文介绍了如何在Spring框架中利用RestTemplate进行远程服务器文件上传,涉及header设置、multipart/form-data格式和实际的代码实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

RestTemplate远程调用文件上传-multipart/form-data

文件上传

需要有header和form表单上传文件的情况

    @Resource
    private RestTemplate restTemplate;
/**
     * 文件上传到远端的服务器
     * @return
     */
    @PostMapping("/uploadFile")
    @ResponseBody
    public String uploadFile() {

        String result = null;
        try {
            String accessToken = "your token";
            String URL = "your url";

            //设置请求
            HttpHeaders headers = new HttpHeaders();
            String token = YhtTokenUtil.getInstance().getYhtToken();

            headers.add("your_token_key", token);
            headers.add("Content-Type", "multipart/form-data");

            //设置请求体,注意是LinkedMultiValueMap
            MultiValueMap<String, Object> form = new LinkedMultiValueMap<>();
            File youFile = new File("D:\\you_path\\file.txt");
            form.add("file", new FileSystemResource(youFile));
//            form.add("your_form_file_key_of_httpRequest", new FileSystemResource(youFile));


            //封装请求报文
            HttpEntity<MultiValueMap<String, Object>> files = new HttpEntity<>(form, headers);

            result = restTemplate.postForObject(URL, files, String.class);
            log.debug("result is " + result);

        } catch (Exception e) {
            e.printStackTrace();
        }
        return "ok";
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值