Unlocker
好的,我终于发现使用该工具发生了什么
(可以在这里下载:http ://www.emptyloop.com/unlocker/#download )
我看到java.exe
文件一旦显示就会锁定。因此,阅读Stream
后StreamedContent
不会立即关闭。
我的解决方案如下:
我创建了一个超类扩展StreamedContent
并让它读取输入流并将读取的字节“馈送”到一个新的InputStream
. 之后我关闭了给定的流,以便再次释放它背后的资源。
这个类看起来像这样:
public class PersonalStreamedContent extends DefaultStreamedContent {
/**
* Copies the given Inputstream and closes it afterwards
*/
public PersonalStreamedContent(FileInputStream stream, String contentType) {
super(copyInputStream(stream), contentType);
}
public static InputStream copyInputStream(InputStream stream) {
if (stream != null) {
try {
byte[] bytes = IOUtils.toByteArray(stream);
stream.close();
return new ByteArrayInputStream(bytes);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
} else {
System.out.println("inputStream was null");
}
return new ByteArrayInputStream(new byte[] {});
}
}
我很确定图像被检索了 2 次,Primefaces
但仅在第一次加载时才关闭。我一开始并没有意识到这一点。
我希望这也可以帮助其他人:)