Tagged Questions

7
votes
2answers
1k views

When using Java's FileLock, is it ok to let close() to automatically do a lock.release()?

As most should know close() also closes any streams uses. This allows the follow code: BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(...))); ... br.close(); This ...
6
votes
3answers
192 views

In Java, Is there a way to read a file when that file is locked by other thread?

So i used the following to create a lock on a file so that I can edit it exclusively: File file = new File(filename); channel = new RandomAccessFile(file, "rw").getChannel(); lock = ...
3
votes
1answer
820 views

Java: opening and reading from a file without locking it

I need to be able to mimic 'tail -f' with Java. I'm trying to read a log file as it's being written by another process, but when I open the file to read it, it locks the file and the other process ...
3
votes
1answer
623 views

Problem with Java file locking mechanism (FileLock etc)

I am creating a simple application for opening and editing xml files. These files are located in a local folder accessed by multiple instances of the application. What I want to do is lock each file ...
3
votes
2answers
2k views

Java FileLock for Reading and Writing

I have a process that will be called rather frequently from cron to read a file that has certain move related commands in it. My process needs to read and write to this data file - and keep it locked ...
3
votes
2answers
3k views

Java file locking and Windows - the lock isn't “absolute”?

I'm trying to lock a file with Java in Windows environment with FileLock and I got an issue : after I lock the file it can still be accessed by other processes at least on some level. Example code ...
2
votes
1answer
66 views

Java FileLock: How to Load Dynamic Library From Locked File?

I have an applet that retrieves a byte array from a backend server. This byte array contains a dynamic library (DLL or SO, depending on which OS the applet is running on), that must be written to disk ...
2
votes
2answers
2k views

How to prevent file from being overridden when reading and processing it with Java?

I'd need to read and process somewhat large file with Java and I'd like to know, if there is some sensible way to protect the file that it wouldn't be overwritten by other processes while I'm reading ...
1
vote
3answers
267 views

Does the following java code guarantee and exclusive lock on an unopened file in Windows?

Does the following java code guarantee and exclusive lock on an unopened file in Windows? import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import ...
1
vote
2answers
172 views

Windows Java File lock when referencing existing file in constructor?

Suppose I do the following in java for a process that stays open: import java.io.File; import java.util.Date; public class LogHolder { public static void main(String[] args) { File file1 ...
0
votes
2answers
327 views

Using FileChannel to write any InputStream?

Can I write any InputStream into a FileChannel? I'm using java.nio.channels.FileChannel to open a file and lock it, then writing a InputStream to the output file. The InputStream may be opened by ...
0
votes
3answers
131 views

Unable to read from newly locked file

So I try to locked the file to read it, but I got IOException, any idea why? public static void main(String[] args){ File file = new File("C:\\dev\\harry\\data.txt"); FileReader fileReader = ...
0
votes
2answers
193 views

Why one JVM get FileLock twice will throw OverlappingFileLockException?

Why get the FileLock twice in one JVM will throw OverlappingFileLockException? Why couldn't the second lock aquirement be blocked and get the lock when it released?
0
votes
1answer
157 views

In Java What is the guaranteed way to get a FileLock from FileChannel while accessing a RandomAccessFile?

I am trying to use FileLock lock(long position, long size,boolean shared) in FileChannel object As per the javadoc it can throw OverlappingFileLockException. When I create a test program with 2 ...