作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Java EE 中有一个休息服务,由于一些奇怪的向后兼容性原因,我必须在其中添加一些行后从 URL 请求返回 .mdb 文件。
起初,我只是打开一个 mdb 文件,清除其中的所有行,写入我的行并将其返回给调用者,但是我意识到 .mdb 一直以这种方式增长,因为 Access 不会在删除时清除行,而只会清除行删除它并且我正在使用的库(Jackcess)不支持完全清除行。
所以我转而使用 java.io.File.createTempFile() 创建一个空的 .mdb 文件的副本并返回它,但是留下了一个指向/tmp/文件夹中文件的悬空指针,几天后我得到了一个
java.io.FileNotFoundException: /tmp/tmpdb.mdb04949499 (Too many open files)
到目前为止我找到的唯一解决方案是:
低于我目前拥有的:
GET
@Path("/get/database/{filename}")
@Produces("application/jet")
public StreamingOutput getDatabase(@PathParam("filename") String fileName)
{
//access files increase indefinitely in size because deleted rows are simply marked "deleted" and not removed
//so we create a temporary file equal to the template .mdb file and use it instead
java.io.File myDBFile = null;
try
{
java.io.File templateDBFile = new java.io.File(url + "resources/clean_tmpdb.mdb");
myDBFile = java.io.File.createTempFile("tmpdb", ".mdb");
myDBFile.deleteOnExit(); //useless hint
FileChannel src = new FileInputStream(templateDBFile).getChannel();
FileChannel dest = new FileOutputStream(myDBFile).getChannel();
dest.transferFrom(src, 0, src.size());
}
catch (IOException ex)
{
Logger.getLogger(FileResource.class.getName()).log(Level.SEVERE, null, ex);
}
finally
{
if (src != null)
{
try
{
src.close();
}
catch (IOException ex)
{
Logger.getLogger(FileResource.class.getName()).log(Level.SEVERE, null, ex);
}
}
if (dest != null)
{
try
{
dest.close();
}
catch (IOException ex)
{
Logger.getLogger(FileResource.class.getName()).log(Level.SEVERE, null, ex);
}
}
/* work on the file inserting rows */
return new FileStreamingOutput(myDBFile);
}
编辑:发现了一个类似的问题,但接受的答案模糊:How to delete file after REST response ,接受的答案是“直接写入响应中包含的输出流。”
最佳答案
您没有关闭 src
或 dest
。为了确保它们关闭,请在 finally
block 中关闭它们,或使用 try-with-resources 语法。
return new FileStreamingOutput(myDBFile);
/* here I should call myDBFile.close(); and myDBFile.delete(); */
这里你不能调用myDBFile.close()
,因为没有这样的方法。您也不能调用myDBFile.delete()
,否则调用者将收到一个不存在的File
。如果需要删除File
,则调用者必须执行此操作。您所说的要求没有意义。
关于java.io.FileNotFoundException :/tmp/(Too many open files),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29768403/
我是一名优秀的程序员,十分优秀!