我正在使用java.nio.file.attribute.AclFileAttributeView和AclEntry来收集系统上所有的ACL文件。在我意识到库没有方法检查主体是用户还是组之前,事情一直很简单。

该功能只需要返回具有读取权限的用户(而不是组),您有什么建议吗?

这是我的代码的草稿

public String[] getViewer(String path)
{
    // List of the ACL enum of read permission
    List<AclEntryPermission> readAcl = new ArrayList<AclEntryPermission>();
    readAcl.add(AclEntryPermission.READ_ATTRIBUTES);
    readAcl.add(AclEntryPermission.READ_DATA);
    readAcl.add(AclEntryPermission.SYNCHRONIZE);
    readAcl.add(AclEntryPermission.READ_NAMED_ATTRS);

    AclFileAttributeView acl = Files.getFileAttributeView(Paths.get(path),
            AclFileAttributeView.class);
    List<String> names = new ArrayList<String>();
    if (acl!=null)
    {
        try {
            List<AclEntry> aclList = acl.getAcl();
            for (AclEntry entry: aclList)
            {
                //System.out.println(a.principal() + ":");
                //System.out.println(entry.permissions() + "\n");
                if (entry.permissions().containsAll(readAcl))
                {
                    // Only add principal if it is not a group
                    if (entry.principal.isGroup())
                    names.add(entry.principal().getName());
                }
            }
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    return names.toArray(new String[]{});
}

最佳答案

为了回答您的问题,可以检查GroupPrincipal。你可以用

if (entry.principal() instanceof GroupPrincipal)


去检查。

但是,我看不到该检查结果能做什么。

10-06 16:12