File 类型文件转 MultipartFile

一、添加依赖



    org.springframework
    spring-mock
    2.0.8

二、转化文件代码如下:

/**
 * 加载类路劲文件
 * @param path
 * @return
 */
private MultipartFile loadFile(String path) throws IOException {
    File file = new File(path);
    FileInputStream inputStream = new FileInputStream(file);
    MultipartFile multipartFile = new MockMultipartFile(file.getName(), inputStream);
    return multipartFile;
}

三、注:此处path是文件的类路径

你可能感兴趣的:(java)