如何将字节数组转换为MultipartFile

时间:2013-08-22 13:31:55

标签: spring-mvc bytearray multipart

我以BASE64编码的String(encodedBytes)的形式接收图像,并使用以下方法解码到服务器端的byte []。

BASE64Decoder decoder = new BASE64Decoder();
byte[] decodedBytes = decoder.decodeBuffer(encodedBytes);

现在我想使用上面获得的这个字节将其转换为MultipartFile?

有没有办法将byte []转换为org.springframework.web.multipart.MultipartFile ??

2 个答案:

答案 0 :(得分:22)

org.springframework.web.multipart.MultipartFile是一个接口,所以首先你需要使用这个接口的实现。

我可以在开箱即用的界面上看到的唯一实现是org.springframework.web.multipart.commons.CommonsMultipartFile。可以找到该实现的API here

或者,当org.springframework.web.multipart.MultipartFile是一个接口时,您可以提供自己的实现并简单地包装您的字节数组。作为一个简单的例子:

/*
*<p>
* Trivial implementation of the {@link MultipartFile} interface to wrap a byte[] decoded
* from a BASE64 encoded String
*</p>
*/
public class BASE64DecodedMultipartFile implements MultipartFile
{
        private final byte[] imgContent;

        public BASE64DecodedMultipartFile(byte[] imgContent)
        {
           this.imgContent = imgContent;
            }

        @Override
            public String getName()
        {
               // TODO - implementation depends on your requirements 
                   return null;
        }

        @Override
            public String getOriginalFilename()
        {
            // TODO - implementation depends on your requirements
                return null;
        }

        @Override
        public String getContentType()
        {
            // TODO - implementation depends on your requirements
            return null;
        }

        @Override
        public boolean isEmpty()
        {
            return imgContent == null || imgContent.length == 0;
        }

        @Override
        public long getSize()
        {
            return imgContent.length;
        }

        @Override
        public byte[] getBytes() throws IOException
        {
            return imgContent;
        }

        @Override
        public InputStream getInputStream() throws IOException
        {
            return new ByteArrayInputStream(imgContent);
        }

        @Override
        public void transferTo(File dest) throws IOException, IllegalStateException
        { 
            new FileOutputStream(dest).write(imgContent);
        }
    }

答案 1 :(得分:1)

上面已经回答了这个答案。最近我正在研究将字节数组对象转换为multipartfile对象的要求。 有两种方法可以实现这一目标。

方法1:

使用默认的CommonsMultipartFile,您可以使用FileDiskItem对象创建它。 例如:

Approach 1:

使用默认的CommonsMultipartFile,您可以使用FileDiskItem对象创建它。 例如:

FileItem fileItem = new DiskFileItem("fileData", "application/pdf",true, outputFile.getName(), 100000000, new java.io.File(System.getProperty("java.io.tmpdir")));              
MultipartFile multipartFile = new CommonsMultipartFile(fileItem);

方法2:

创建自己的自定义多部分文件对象,并将字节数组转换为multipartfile。

public class CustomMultipartFile implements MultipartFile {

private final byte[] fileContent;

private String fileName;

private String contentType;

private File file;

private String destPath = System.getProperty("java.io.tmpdir");

private FileOutputStream fileOutputStream;

public CustomMultipartFile(byte[] fileData, String name) {
    this.fileContent = fileData;
    this.fileName = name;
    file = new File(destPath + fileName);

}

@Override
public void transferTo(File dest) throws IOException, IllegalStateException {
    fileOutputStream = new FileOutputStream(dest);
    fileOutputStream.write(fileContent);
}

public void clearOutStreams() throws IOException {
if (null != fileOutputStream) {
        fileOutputStream.flush();
        fileOutputStream.close();
        file.deleteOnExit();
    }
}

@Override
public byte[] getBytes() throws IOException {
    return fileContent;
}

@Override
public InputStream getInputStream() throws IOException {
    return new ByteArrayInputStream(fileContent);
}
}

这是如何使用上面的CustomMultipartFile对象。

String fileName = "intermediate.pdf";
CustomMultipartFile customMultipartFile = new CustomMultipartFile(bytea, fileName);
try {
customMultipartFile.transferTo(customMultipartFile.getFile());

} catch (IllegalStateException e) {
    log.info("IllegalStateException : " + e);
} catch (IOException e) {
    log.info("IOException : " + e);
}

这将创建所需的PDF并将其存储到

  

java.io.tmpdir   名称为intermediate.pdf

感谢。