springboot 단일 파일 과 다 중 파일 업로드 실현
6539 단어 springboot파일 업로드
package com.heeexy.example.controller;
import com.alibaba.fastjson.JSONObject;
import com.heeexy.example.util.CommonUtil;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartHttpServletRequest;
import javax.servlet.http.HttpServletRequest;
import java.io.*;
import java.util.*;
@RestController
@RequestMapping("/common")
public class UploadController {
//
File uploadPath = null;
//
@PostMapping("/upload")
public JSONObject upload(@RequestParam(value = "file", required = false)MultipartFile file,HttpServletRequest request) throws Exception{
// json
JSONObject returnData = new JSONObject();
//
BufferedOutputStream out = null;
// request JSONObject
JSONObject jsonObject = CommonUtil.request2Json(request);
//
CommonUtil.hasAllRequired(jsonObject,"user_id,equi_id,upload_type");
// id
String user_id = jsonObject.getString("user_id");
// id
String equi_id = jsonObject.getString("equi_id");
// 1: 2:
String upload_type = jsonObject.getString("upload_type");
//
File uploadPath = null;
String basePath = "/root/img"; //
String inspection = "/inspection"; //
String maintenance = "/maintenance"; //
switch (upload_type){
case "1":
uploadPath = new File(basePath+inspection);
break;
case "2":
uploadPath = new File(basePath+maintenance);
break;
default:
uploadPath = new File(basePath);
}
//
if(!uploadPath.exists()){
uploadPath.mkdirs();
}
//
if (file!=null) {
//
String houzhui = file.getOriginalFilename().split("\\.")[1];
// ( id+ id+ . )
File fil = new File(uploadPath+"/"+user_id+equi_id+new Date().getTime()+"."+houzhui);
try {
//
out = new BufferedOutputStream(new FileOutputStream(fil));
out.write(file.getBytes());
out.flush();
out.close();
// getAbsolutePath()
returnData.put("message",fil.getName());
} catch (FileNotFoundException e) {
e.printStackTrace();
returnData.put("message", " :" + e.getMessage());
} catch (IOException e) {
e.printStackTrace();
returnData.put("message", " :" + e.getMessage());
}finally {
//
if(out!=null){out.close();}
}
} else {
returnData.put("message", " , ");
}
return CommonUtil.successJson(returnData);
}
//
@PostMapping("/batchUpload")
public JSONObject handleFileUpload(HttpServletRequest request) throws Exception{
// json
JSONObject returnData = new JSONObject();
// ,
BufferedOutputStream stream = null;
// map
Map<String,String> returnfileMap = new HashMap<String, String>();
//
List<MultipartFile> files = ((MultipartHttpServletRequest) request).getFiles("file");
MultipartFile file = null;
// request JSONObject
JSONObject jsonObject = CommonUtil.request2Json(request);
// , id, id,
CommonUtil.hasAllRequired(jsonObject,"user_id,equi_id,upload_type");
// id
String user_id = jsonObject.getString("user_id");
// id
String equi_id = jsonObject.getString("equi_id");
// 1: 2:
String upload_type = jsonObject.getString("upload_type");
//
File uploadPath = null;
String basePath = "/root/img"; //
String inspection = "/inspection"; //
String maintenance = "/maintenance"; //
switch (upload_type){
case "1":
uploadPath = new File(basePath+inspection);
break;
case "2":
uploadPath = new File(basePath+maintenance);
break;
default:
uploadPath = new File(basePath);
}
//
if(!uploadPath.exists()){
uploadPath.mkdirs();
}
//
for (int i = 0; i < files.size(); ++i) {
//
file = files.get(i);
try {
//
String houzhui = file.getOriginalFilename().split("\\.")[1];
// ( id+ id+ . )
File fil = new File(uploadPath+"/"+user_id+equi_id+new Date().getTime()+"."+houzhui);
//
byte[] bytes = file.getBytes();
stream = new BufferedOutputStream(new FileOutputStream(fil));
stream.write(bytes);
stream.close();
// , key, value returnfileMap
switch (upload_type){
case "1":
returnfileMap.put(file.getOriginalFilename(),inspection+"/"+fil.getName());
break;
case "2":
returnfileMap.put(file.getOriginalFilename(),maintenance+"/"+fil.getName());
break;
}
} catch (Exception e) {
stream = null;
// , key,value "fail", returnfileMap
returnfileMap.put(file.getOriginalFilename(),"fail");
}finally {
//
if(stream!=null){stream.close();}
}
}
// returnfileMap
returnData.put("message",returnfileMap);
return CommonUtil.successJson(returnData);
}
}
단일 파일 결과다 중 파일 업로드 결과
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin Springboot -- 파트 14 사용 사례 REST로 전환하여 POST로 JSON으로 전환前回 前回 前回 記事 の は は で で で で で で を 使っ 使っ 使っ て て て て て リクエスト を を 受け取り 、 reqeustbody で 、 その リクエスト の ボディ ボディ を を 受け取り 、 関数 内部 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.