博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring’s RestTemplate
阅读量:5217 次
发布时间:2019-06-14

本文共 1147 字,大约阅读时间需要 3 分钟。

Spring’s RestTemplate

/** * After the word document is generated in memory we can upload it to the server. * * @param fileContents The byte array we're wanting to POST * @param filename     The name of the file you're uploading. You can make yours up if you want. */private static void uploadWordDocument(byte[] fileContents, final String filename) {    RestTemplate restTemplate = new RestTemplate();    String fooResourceUrl = "http://localhost:8080/spring-rest/foos"; // Dummy URL.    MultiValueMap
map = new LinkedMultiValueMap
(); map.add("name", filename); map.add("filename", filename); // Here we ByteArrayResource contentsAsResource = new ByteArrayResource(fileContents) { @Override public String getFilename() { return filename; // Filename has to be returned in order to be able to post. } }; map.add("file", contentsAsResource); // Now you can send your file along. String result = restTemplate.postForObject(fooResourceUrl, map, String.class); // Proceed as normal with your results.}

 

转载于:https://www.cnblogs.com/stono/p/10942062.html

你可能感兴趣的文章
http站点转https站点教程
查看>>
解决miner.start() 返回null
查看>>
关于MFC中窗口的销毁
查看>>
bzoj 2007: [Noi2010]海拔【最小割+dijskstra】
查看>>
BZOJ 1001--[BeiJing2006]狼抓兔子(最短路&对偶图)
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
128 Longest Consecutive Sequence 一个无序整数数组中找到最长连续序列
查看>>
定制jackson的自定义序列化(null值的处理)
查看>>
auth模块
查看>>
Java使用FileReader(file)、readLine()读取文件,以行为单位,一次读一行,一直读到null时结束,每读一行都显示行号。...
查看>>
Elipse安装Spring Tool Suite
查看>>
javascript keycode大全
查看>>
前台freemark获取后台的值
查看>>
log4j.properties的作用
查看>>
滴滴快车历史奖励政策:含工作日和周末的高峰奖励、翻倍奖励【历史政策】...
查看>>
文件操作类2
查看>>
游戏偶感
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
转载------------Python多线程学习
查看>>
phpcurl类
查看>>