| Author |
process cannot access the file because another process has locked: java.util.Logging
|
bhuvani krishna
Greenhorn
Joined: Dec 20, 2006
Posts: 7
|
|
Hi, I am using java.util.Logging as Logging mechanism for my application. It creates log file in the directory, say for example c://samples/ My application has to create one zip file in the same directory. But while running, It shows the exeception as follows: java.io.IOException: The process cannot access the file because another process has locked a portion of the file java.util.Logging creates not only the log file, but also the lck file. I think, this is the cause for the problem. How can we stop he logger from the creation of lck file.
|
 |
Ajay Singh
Ranch Hand
Joined: Dec 13, 2006
Posts: 182
|
|
|
You must be opening the file on read-write mode.
|
 |
 |
|
|
subject: process cannot access the file because another process has locked: java.util.Logging
|
|
|