I have a Java program running under Windows XP. It reads a file and closes the file, or at least that's what it's supposed to do.
Sometimes the file remains locked and I can't write to it ("I" meaning me as a user, trying to execute copy file2.out file1.out from a Command Prompt, where file1.out is the file my Java program reads) until I close my Java program. (windows complains "can't write to a file with a mapped user process" or something like that)
Any suggestions for how to debug? I'm stumped.
clarification: The problem I'm having isn't figuring out whether the file is being kept open, or by which process it's being kept open. The problem is figuring out where in my Java program I am not correctly closing the file, as it is a large program and several classes have access to the file's InputStream during the time the InputStream is opened.
I can narrow it down to a few classes, but I'm not sure where to look at next.