Too Many Open Files
Hello,
I have a problem with my java application, It open, read, write and close a lot of file very rapidly, and when it arrive to the 990th file, it handle an IOException ( Too many open files).
The problem is I close ALL FILES and set them to null after closes it...
Did it exist a method to know which files are opened by the thread ?
Or perhaps I must closes "File" object with a method ? I just do close() to FileOutputStream and "=null;" to File instances...
thanks

