我创建了一个临时文件夹,然后尝试在Windows 7计算机中更改其权限。我有管理员权限。
public class FilePermissionExample
{
public static void main( String[] args )
{
try {
File file = File.createTempFile("temp", Long.toString(System.nanoTime()));
file.delete();
file.mkdir();
if(file.exists()){
System.out.println("Is Execute allow : " + file.canExecute());
System.out.println("Is Write allow : " + file.canWrite());
System.out.println("Is Read allow : " + file.canRead());
}
file.setExecutable(false);
file.setReadable(false);
file.setWritable(false);
System.out.println("Is Execute allow : " + file.canExecute());
System.out.println("Is Write allow : " + file.canWrite());
System.out.println("Is Read allow : " + file.canRead());
if (file.createNewFile()){
System.out.println("File is created!");
}else{
System.out.println("File already exists.");
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
输出:
是执行允许:真实
写允许:真实
是允许:真实的
是执行允许:真实
写允许:真实
是允许:真实的
文件已存在。
:
是执行允许:真实
写允许:真实
是允许:真实的
是执行允许:假
写允许:假
是否允许:false
在Windows中使用hiverunner编写hive测试时,我遇到了类似的问题。有谁能提出建议?
答案 0 :(得分:1)
来自java.io.File
的API文档:
"文件系统可能对实际文件系统对象上的某些操作实施限制,例如读取,写入和执行。这些限制统称为访问权限。文件系统可以在单个对象上具有多组访问权限。例如,一组可以应用于对象的所有者,另一组可以应用于所有其他用户。对象的访问权限可能导致此类中的某些方法失败。"
所以你的操作系统不允许更改权限。
答案 1 :(得分:1)
如果要更改NTFS格式化驱动器的权限,则需要通过AclFileAttributeView更改权限。
以下相当详细的代码段显示了删除给定文件上write
authorized users
权限的主体。
假设用户jane
是文件fobar.bin
的所有者,而用户john
拥有authorized user
写入权限。运行代码段后,john
无法再写入文件。
static final String AUTHENTICATED_USERS = "NT AUTHORITY\\Authenticated Users";
...
Path file = Paths.get("foobar.bin");
AclFileAttributeView view = Files.getFileAttributeView(
file, AclFileAttributeView.class);
// show current permissions for authenticated users
for (AclEntry acl : view.getAcl()) {
if (acl.principal().getName().equals(AUTHENTICATED_USERS)) {
System.out.printf("current permissions: %s%n", acl.permissions());
}
}
// remove the WRITE_DATA permission for authenticated users
// get list of current ACLs
List<AclEntry> acls = view.getAcl();
for (int i = 0; i < acls.size(); i++) {
UserPrincipal principal = acls.get(i).principal();
String principalName = principal.getName();
if (principalName.equals(AUTHENTICATED_USERS)) {
// get the current permissions
Set<AclEntryPermission> permissions = acls.get(i).permissions();
// remove WRITE_DATA permission
permissions.remove(AclEntryPermission.WRITE_DATA);
// create a new ACL entry
AclEntry entry = AclEntry.newBuilder()
.setType(AclEntryType.ALLOW)
.setPrincipal(principal)
.setPermissions(permissions)
.build();
// replace the ACL entry for authenticated users
acls.set(i, entry);
}
}
// set the updated list of ACLs
view.setAcl(acls);
// show updated permissions for authenticated users
for (AclEntry acl : view.getAcl()) {
if (acl.principal().getName().equals(AUTHENTICATED_USERS)) {
System.out.printf("updated permissions: %s%n", acl.permissions());
}
}
示例输出(包裹长行)
current permissions: [READ_NAMED_ATTRS, DELETE, EXECUTE, WRITE_ACL, \
WRITE_ATTRIBUTES, DELETE_CHILD, WRITE_DATA, READ_ATTRIBUTES, \
SYNCHRONIZE, WRITE_OWNER, APPEND_DATA, WRITE_NAMED_ATTRS, READ_DATA, \
READ_ACL]
updated permissions: [READ_NAMED_ATTRS, DELETE, EXECUTE, WRITE_ACL, \
WRITE_ATTRIBUTES, DELETE_CHILD, READ_ATTRIBUTES, SYNCHRONIZE, \
WRITE_OWNER, APPEND_DATA, WRITE_NAMED_ATTRS, READ_DATA, READ_ACL]
权限WRITE_DATA
已被删除。