java中MultipartFile互轉File的方法

MultipartFile轉File

公司業務遇到需要接收前臺提交過來的圖片或文件(multipart/form-data)類型的(ps:不知道有沒有拼錯嘻嘻)

後臺接收的需要轉換為一個File類型的

那麼這裡涉及到瞭類型轉換的問題:

先列下我的代碼:

@PostMapping("upload")
    @ResponseBody
    public void upload(HttpServletResponse response,MultipartFile file)throws IOException{
        //MultipartFile file = ((MultipartHttpServletRequest) request).getFile("file");
        PrintWriter writer = response.getWriter();
        File f = null;
        if(file.equals("")||file.getSize()<=0){
            file = null;
        }else{
            InputStream ins = file.getInputStream();
            f=new File(file.getOriginalFilename());
            FileUtil.inputStreamToFile(ins, f);
        }
 
        JSONObject jsonObject= weChatMaterialService.getMediaId("image",f);
        writer.print(jsonObject);
        writer.flush();
        writer.close();
 
        File del = new File(f.toURI());
        del.delete();
        System.out.println(jsonObject);
 
    }

現在來剖析下:就是判斷下我接收的文件是不是空的,如果不是空的就將它轉換成為流的形式

後面那個FileUtil就是將流轉換成File,最後一步就是因為這樣做法會在項目的根目錄下(好像是根目錄,我也不確定,也是現學現用的嘻嘻)生成一個 文件,這個是我們不需要的對嘛,然後將其刪除就行啦

File f = null;
        if(file.equals("")||file.getSize()<=0){
            file = null;
        }else{
            InputStream ins = file.getInputStream();
            f=new File(file.getOriginalFilename());
            FileUtil.inputStreamToFile(ins, f);
        }
 
public class FileUtil {
    public static void inputStreamToFile(InputStream ins, File file) {
        try {
            OutputStream os = new FileOutputStream(file);
            int bytesRead = 0;
            byte[] buffer = new byte[8192];
            while ((bytesRead = ins.read(buffer, 0, 8192)) != -1) {
                os.write(buffer, 0, bytesRead);
            }
            os.close();
            ins.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
 
}
 File del = new File(f.toURI());
        del.delete();

File轉MultipartFile

添加依賴

<!-- https://mvnrepository.com/artifact/org.springframework/spring-mock -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-mock</artifactId>
    <version>2.0.8</version>
</dependency>

代碼

/**
  * @param
  * @return
  * @author:liuyu
  * @創建日期:2020年3月5日
  * @功能說明:File轉MultipartFile
  */
 private static MultipartFile fileToMultipartFile(File file) throws Exception {
  InputStream inputStream = new FileInputStream(file);
  MultipartFile multipartFile = new MockMultipartFile(file.getName(), inputStream);
  return multipartFile;

 }

 PS:file轉base64字符串

①  java之文件轉為base64字符

 FileInputStream inputFile = new FileInputStream(f);
 String base 64=null;
  byte[] buffer = new byte[(int) f.length()];
  inputFile.read(buffer);
  inputFile.close();
  base64=new BASE64Encoder().encode(buffer);

②註意:java中在使用BASE64Enconder().encode(buffer)會出現字符串換行問題,這是因為RFC 822中規定,每72個字符中加一個換行符號,這樣會造成在使用base64字符串時出現問題,所以我們在使用時要先解決換行的問題

String encoded = base64.replaceAll("[\\s*\t\n\r]", "");

到此這篇關於java中MultipartFile互轉File的方法的文章就介紹到這瞭,更多相關java MultipartFile互轉File內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: