FileNotFoundException (File too large)

百般思念 提交于 2019-12-23 10:30:11

问题


I am getting this exception when trying to download a file

Caused by: java.io.FileNotFoundException: /repository/PWWVFSYWDW0STLHYVEEKHMYBXZTTETGROCQ4FGdsadadaXR1407709207964905350810526.jpg (File too large)
at java.io.FileOutputStream.open(Native Method)

It is clear that file the exists. In addition to that, the same program works properly on my PC, but there is a problem with the server, which is Unix

Any ideas what might be causing this?


回答1:


I think that this is an obscure error that is actually coming from the OS level or the JVM's native code implementation. The message "File too large" is the error message that you would get if the perror C library method was used to render the EFBIG error number.

Now ordinarily, this should not happen. According to the UNIX / Linux manual entries, the various open library calls should not fail with EFBIG.

However, I have seen various error reports that imply that fopen (etcetera) can fail like that on some file systems, and/or when the a C / C++ program has been built with 64bit file size support disabled.


So what does this mean?

It is not clear, but I suspect that it means that you are either:

  • using a flaky implementation of Java,

  • running a flaky release of UNIX / Linux, or

  • you are trying to use some type of file system that is not well supported by your server's OS. (Might it be on a FUSE file system?)

A possibly related Java bug:

  • http://bugs.java.com/bugdatabase/view_bug.do?bug_id=7009975 (Java 7 on Solaris.)



回答2:


So , it is solved. The problem is that, disk is full as a result stream takes long time, I clean up the disk after that there is no problem,




回答3:


POSIX (and thus Unix) systems are allowed to impose a maximum length on the path (what you get from File.getPath() or the components of a path (the last of which you can get with File.getName()). You might be seeing this problem because of the long name for the file.

In that case, the file open operating system call will fail with an ENAMETOOLONG error code.

However, the message "File too large" is typically associated with the EFBIG error code. That is more likely to result from a write system call:

An attempt was made to write a file that exceeds the implementation-dependent maximum file size or the process' file size limit.

Perhaps the file is being opened for appending, and the implied lseek to the end of the file is giving the EFBIG error.




回答4:


Irrespective of the JVM error output (which might be misleading or slightly off), you may want to check the that your Unix process has enough open file handles. Exhausting process file handles can lead to all kinds of FS-related error codes.




回答5:


I received this message when trying to write a file to a directory on a RedHat server that already had the maximum number of files in it. I subdivided my files into subdirectories and the error did not reappear.



来源:https://stackoverflow.com/questions/25242287/filenotfoundexception-file-too-large

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!