lock created to jar file
I have the following piece of code
URL url = new URL("jar:file://jarFile.jar!/common.property");
JarURLConnection jarCon = (JarURLConnection) url.openConnection();
objInputStream = jarCon.getInputStream();
objInputStream.close();
objInputStream = null;
jarCon = null;
url = null;
After executing this code, a lock is set on the jar file. I am not able to delete or rename this file. Message is shown that the file is used by so me other program.
Can anybody help me?
Thx in adv.
omni

