码迷,mamicode.com
首页 > 其他好文 > 详细

File转换成MultiPartFile

时间:2019-07-16 14:10:58      阅读:2020      评论:0      收藏:0      [点我收藏+]

标签:textfield   获取   filename   tac   使用   exce   substring   https   对象   

1.首先获取FileItem对象:
public FileItem createFileItem(String filePath) {
    FileItemFactory factory = new DiskFileItemFactory(16, null);
    String textFieldName = "textField";
    int num = filePath.lastIndexOf(".");
    String extFile = filePath.substring(num);
    FileItem item = factory.createItem(textFieldName, "text/plain", true, "MyFileName");
    File newfile = new File(filePath);
    int bytesRead = 0;
    byte[] buffer = new byte[8192];
    try {
        FileInputStream fis = new FileInputStream(newfile);
        OutputStream os = item.getOutputStream();
        while ((bytesRead = fis.read(buffer, 0, 8192)) != -1) {
            os.write(buffer, 0, bytesRead);
        }
        os.close();
        fis.close();
    } catch (IOException e) {
        e.printStackTrace();
    }
    return item;
}




2.通过FileItem对象可以轻松获得CommonsMultipartFile对象,转换成MultiPartFile对象即可使用。
MultipartFile mfile = new CommonsMultipartFile(fileItem);

参考: https://segmentfault.com/a/1190000015706485

File转换成MultiPartFile

标签:textfield   获取   filename   tac   使用   exce   substring   https   对象   

原文地址:https://www.cnblogs.com/lovedaodao/p/11194440.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!