最近因为需求是把重要文件数据保存到表里面,不上传到文件服务器中,因此才想到这种做法
注意事项
1.实体类对象里面用于存储文件的字段类型必须为Object,因为存入表的时候数据类型时blob类型,读取出来的数据类型时byte[]数组
2.表里面数据类型设置为Blob 或者longblob
3.设置上传文件大小必须小于4M(byte.length < 4* 1024*1024)
附上用于测试的代码
1.文件转换为MultipartFile 对象
/**
*
* @Description 返回MultipartFile文件
* @return org.springframework.web.multipart.MultipartFile
*/
public static MultipartFile getFile() {
try{
File file = new File("H:\\test1.xlsx");
FileInputStream input = new FileInputStream(file);
MultipartFile multipartFile = new MockMultipartFile("copy"+file.getName(),file.getName(), ContentType.APPLICATION_OCTET_STREAM.toString(),input);
return multipartFile;
}catch (Exception e){
e.printStackTrace();
return null;
}
}
2. MultipartFile转换为Blob对象
import java.sql.Blob;//不要导错包
Blob blob = new SerialBlob(multipartFile.getBytes());
3. 读取时反转为Byte对象
byte result[] = (byte[])bean.getBlobObject()//读取数据时候记得转换为byte数组,下载的时候可以直接使用这个数组.