java.io.IOException: Bad file descriptor
Searched on Google with the first line of a JAVA stack trace?
We can recommend more relevant solutions and speed up debugging when you paste your entire stack trace with the exception message. Try a sample exception.
Recommended solutions based on your search
Samebug tips
This occurs when the file is being locked by another application. Check if another process is accessing the same file. On Windows follow this post to figure it out : https://goo.gl/yPp1To
If it's being used, terminate that process to gain access.
When you iterate over the lines of a scala.io.Source with source.getLines, make sure you do not close the source until you processed the iterator.
Solutions on the web
via Coderanch by David Law, 1 year ago
via Oracle Community by 843830, 1 year ago
via Oracle Community by 666705, 1 year ago
via Netbeans Bugzilla by javydreamercsw, 1 year ago
via Atlassian JIRA by Michael Heemskerk, 1 year ago
via Netbeans Bugzilla by jeffcmid, 1 year ago
java.io.IOException: Bad file descriptor
at java.io.FileInputStream.readBytes(Native Method)
at java.io.FileInputStream.read(FileInputStream.java:177)
at Compressor.gzipFile(Compressor.java:16)
at Compressor.main(Compressor.java:28)