爲了提高性能,需要對文件/Logo 等進行緩存。
public static InputStream SYS_LOGO_Stream = null;
SYS_LOGO_Stream = getClass().getResourceAsStream("/logo_blue.jpeg")
儅第二次讀取SYS_LOGO_Stream 時,光標已經到了尾部,
需要用到reset,重新定位光標。否則讀取的内容是NULL,使用時會報錯。
The byte array is not a recognized imageformat
此處提供比較簡單的處理方法,把input stream 讀入Byte[],使用時再從Byte[]轉化。
public static byte[] SYS_LOGO_ByteArr = null;
@Bean
public InputStream loadImg(){
try {
if(SYS_LOGO_Blue_ByteArr==null) {
SYS_LOGO_Blue_ByteArr = getClass().
getResourceAsStream("/logo_blue.jpeg").readAllBytes();
}
}catch(IOException e) {
e.printStackTrace();
}
return new ByteArrayInputStream(SYS_LOGO_Blue_ByteArr);
}