发布时间:2023-04-29 09:30
链接
<dependency>
<groupId>cn.hutoolgroupId>
<artifactId>hutool-allartifactId>
<version>4.1.0version>
dependency>
<dependency>
<groupId>com.alibabagroupId>
<artifactId>fastjsonartifactId>
<version>1.2.4version>
dependency>
@RequestMapping("/")
public String upload(MultipartFile file){
String result = "",
try{
InputStreamResource isr = new InputStreamResource(file.getInputStream(),
file.getOriginalFilename());
Map<String,Object> params = new HashMap<>();
params.put("file",isr);
params.put("path","234234");
params.put("output","json");
String resp = HttpUtil.post(url,params);
Console.log("resp: { }",resp);
result = resp;
}catch(IOException e){
e.printStackTrace();
}
return result;
}
@PostMapping("/")
public String getOrder(@Value("$system.fileUpload") String url) throws IOException{
//创建httpclient对象
HttpClient httpClient = new HttpClient();
Charset charset = Charset.forName("UTF-8");
//创建http发送方式
HttpPost httpPost = new HttpPost(url);
//创建发送实体,KV结构
MutipartEntity reqEntity = new MutipartEntity();
File myfile = new File("\\xx\xx\x.jpg");
FileBody fileContent = new FileBody(myfile);
reqEntity.addPart("myfile",fileContent);
StringBody content = new StringBody("sss.jpg", charset);
reqEntity.addPart("token", contenttoken);
httppost.setEntity(reqEntity);
//执行httppost对象
HtttpResponse reponse = httpClient.execute(httppost);
HttpEntity resEntity = response.getEntity();
String resString = EntityUtils.toString(resEntity);
return resString;
}
@RequestMapping("/")
public String upload2(MutipartFile file){
String result = "";
try{
OkHttpClient httpClient = new OkHttpClient.Builder()
.setType(MultipartBody.FORM)
.addFormDataPart("file", file.getOriginalFilename(),
RequestBody.create(MediaType.parse("multipart/form-data;chaeset=utf-8"),
file.getBytes()))
.addFormDataPart("output", "json")
.build();
Request request = new Request.Builder()
.url(UPLOAD_PATH)
.post(multipartBody)
.build();
Response response = httpClient.newCall(request).execute();
if(response.isSuccessful()){
ResponseBody body = response.body;
if(body != null){
result = body.String();
sout(result);
}
}
}catch(Exception e){
e.printStackTrace();
}
return result;
}
蓝桥杯 青少年创意编程大赛 scratch 组、中国电子学会scratch等级考试等
从零开始实现lmax-Disruptor队列(五)Disruptor DSL风格API原理解析
武汉,是你来明媚我的忧伤了么?_RWERWERWE_96921_新浪博客
R语言Bootstrap、百分位Bootstrap法抽样参数估计置信区间分析通勤时间和学生锻炼数据
python字典中添加、修改数据、删除数据和遍历数据、enumerate函数和公共方法
docker出现GPG error: At least one invalid signature was encountered 相关问题及解决方法