Quantcast
Channel: Linux File Locking in Java - Stack Overflow
Browsing all 4 articles
Browse latest View live

Answer by Kosta for Linux File Locking in Java

The Java Standard Library does not expose flock() or fnctl() directly. It seems to use lockf() in FileChannel/FileLock - but I wouldn't count on it using lockf() if you need to be sure. From the...

View Article



Answer by twalberg for Linux File Locking in Java

File locking must be done by the operating system kernel / file system drivers, unless you're thinking of a narrower scope like just locking between the threads of a single process. There's no way all...

View Article

Answer by p_strand for Linux File Locking in Java

You can create a new file yourself which you use as a lockfile (the following is an example in Java since you stated that you wanted to implement some custom file lock logic in Java):File lockFile =...

View Article

Linux File Locking in Java

I know we can lock a file in linux using flock(). However, NFS drive might not support file lock.I am thinking to implement some custom file lock logic in my java code, to support file lock on any...

View Article
Browsing all 4 articles
Browse latest View live




Latest Images