gpt4 book ai didi

java - 防止文件竞争条件

转载 作者:行者123 更新时间:2023-12-02 08:33:41 24 4
gpt4 key购买 nike

如果我测试我是否有文件权限,例如java.io.File#canRead() 并创建一个 FileOutputStream 之后,(据我所知)可能是另一个进程(例如 chmod mv) 修改权限或重命名文件、删除文件或将其与另一个文件切换。

例如,我只想在文件可执行时向该文件写入内容。

在 C 语言中,可以使用 FileDescriptor 来防止类似的竞争条件。

在Java中,有一个java.io.FileDescriptor类,但似乎这个类仅用于同步缓冲区和创建流,我需要一个File*Stream 以获得FileDescriptor

如何才能防止这种竞争情况,例如使用 FileDescriptor 或其他机制?

或者文件是否以某种方式受到保护?

最佳答案

您可以更改方法并使用 java.nio.channels 包中的 Java NIO API 的 FileLock 类。根据official documentation :

This file-locking API is intended to map directly to the native locking facility of the underlying operating system. Thus the locks held on a file should be visible to all programs that have access to the file, regardless of the language in which those programs are written.

private static FileChannel fc;
private static RandomAccessFile raFile;

public FileLockProcesser(final String fileName) throws FileNotFoundException {
raFile = new RandomAccessFile(fileName, "rw");
}

public void lockedWrite(final String data) {
fc = raFile.getChannel();
ByteBuffer buffer = null;
try (fc; raFile; FileLock fileLock = fc.tryLock()) {
if (fileLock != null) {
buffer = ByteBuffer.wrap(data.getBytes());
buffer.put(data.toString().getBytes());
buffer.flip();

while (buffer.hasRemaining())
fc.write(buffer);
}
} catch (OverlappingFileLockException | IOException ex) {
...
}
}

要检查权限,您可以再次使用 NIO API。示例:

import java.io.FileNotFoundException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;

public static void main(String[] args) {

String filePath = args[0];
Path p = Paths.get(filePath);

if (Files.notExists(p))
throw new FileNotFoundException();

if (Files.isWritable(p))
...

if (Files.isReadable(p))
...

if (Files.isExecutable(p))
...

}

关于java - 防止文件竞争条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60016052/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com