Answer by codelion for Resources not being released
The URLClassLoader class already has a close() method. The close() method will close any Jar file that are opened with the URLClassLoader. This should prevent the "file already in use" exception.
View ArticleAnswer by Cfx for Resources not being released
Some Virus scanner software take a long time in checking JARs. Try to disable the Virusscanner. Other candidates can be the Windows indexer process, or the explorer.exe itself. When you don't find any...
View ArticleAnswer by darkled for Resources not being released
File is already being used by another process. says that it could be not your fault, maybe just another application is used that file. You can check this question to find a process which is used your...
View ArticleResources not being released
We have a legacy system that has a admim module that allows users to upload jar files. After the upload, the jar file is validated and if not compliant to internal rules, it is deleted.The problem is...
View Article