Tagged Questions
0
votes
1answer
89 views
How to use FileLock on android?
I think that we are able to lock files for exclusive access as i saw this link: http://developer.android.com/reference/java/nio/channels/FileLock.html
I want to create a save/load a file both in a ...
0
votes
1answer
60 views
Windows vs OSX FileLock OutputStreamWriter
I wrote a java application that accesses a file while other Processes in other VMs try to do the same. Therefore I use the FileLock class:
FileOutputStream fos = new ...
5
votes
1answer
202 views
Does FileChannel tryLock() method checks for locks or just breaks them?
I have two processes that may access the same file concurently and wanted to implement file locking. The trouble seems to be that one process is written in java and the other in C and it is not clear ...
2
votes
2answers
298 views
How wait and get lock on file
I want wait till other program releases lock on particular file, then I want to proceed to open that unlocked file.
I came across many solutions, but none are useful, here is my code -
File file = ...
1
vote
2answers
324 views
Read external log file without creating file-lock
Trying to read a log file line-by-line (in Java). This log file is being written to simultaneously by another process (non-java program).
I have 2 approaches -
BufferedReader (BufferedReader br = ...
0
votes
1answer
82 views
Having trouble releasing a Java FileLock
I haven't worked with nio much and I'm having some trouble with releasing a FileLock. Basically, in JVM-A I have a NON-SHARABLE write lock on a file which looks something like this:
File lockfile = ...
4
votes
2answers
133 views
How to check FileLock without truncating file?
I recently added filelocks to my downloader asynctask:
FileOutputStream file = new FileOutputStream(_outFile);
file.getChannel().lock();
and after download completes, file.close() to release lock.
...
0
votes
1answer
95 views
Can't read or write from a locked file in Java
I've locked a file using a FileLock in Java, but now I can't read to or write from it. What do I do?
1
vote
0answers
118 views
Will JAXB handle file locking for me?
I would like to make sure that no other process modifies the xml file while reading it. This is my code:
final File file = new File(configFilePath);
final FileChannel channel = new ...
3
votes
3answers
1k views
Unable to lock files on linux using java.nio.channels.FileLock
I was creating an application in java for which i want only one instance running. For this purpose i got the solution of creating a file and getting a lock over it until my application is running.
I ...
0
votes
1answer
341 views
How to lock, text file open for reading?
I want lock my input text file, in my program, so if the next occurrence of program is run on the same file it crash (throws exception).
I know that i can lock file with "java.nio.channels.FileLock" ...
0
votes
1answer
307 views
Locking `properties` file in java
I read this post. Can anybody tell me if the java.nio.FileLock.lock() works well with java.util.Properties class.
Question:
If I put the lock on the properties file what I read, does this lock the ...
2
votes
1answer
146 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 ...
1
vote
2answers
3k 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
427 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 = ...
7
votes
3answers
840 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 = ...
0
votes
3answers
514 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?
1
vote
3answers
562 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
288 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
1answer
214 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 ...
4
votes
1answer
2k 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
1k 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 ...
7
votes
2answers
8k 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 ...
4
votes
2answers
4k 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 ...
4
votes
2answers
3k 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 ...
8
votes
2answers
2k 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 ...