gpt4 book ai didi

java - 创建一个锁定文件的 Java 程序

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:32:36 26 4
gpt4 key购买 nike

如何锁定文件,以便用户只能使用我的 Java 程序解锁它?

import java.nio.channels.*;
import java.io.*;

public class filelock {

public static void main(String[] args) {

FileLock lock = null;
FileChannel fchannel = null;

try {
File file = new File("c:\\Users\\green\\Desktop\\lock.txt");

fchannel = new RandomAccessFile(file, "rw").getChannel();

lock = fchannel.lock();
} catch (Exception e) {
}
}
}

这是我的示例代码。它没有给我我想要的。我希望它拒绝任何人读取或写入文件,直到我使用我的 Java 程序解锁它。

最佳答案

您可以在要锁定的地方执行此操作:

File f1 = new File(Your file path);
f1.setExecutable(false);
f1.setWritable(false);
f1.setReadable(false);

解锁你可以这样做:

File f1 = new File(Your file path);
f1.setExecutable(true);
f1.setWritable(true);
f1.setReadable(true);

申请前

检查文件权限是否允许:

file.canExecute(); – return true, file is executable; false is not.
file.canWrite(); – return true, file is writable; false is not.
file.canRead(); – return true, file is readable; false is not.

对于 Unix 系统,您必须输入以下代码:

Runtime.getRuntime().exec("chmod 777 file");

关于java - 创建一个锁定文件的 Java 程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17505680/

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