2

这是代码:

import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.Files;
import java.nio.file.attribute.UserPrincipalLookupService;
import java.nio.file.attribute.UserPrincipal;
import java.nio.file.FileSystems;
import java.lang.UnsupportedOperationException;
import java.io.IOException;

public class SetOwnerOfFile{
    public static void main(String args[]){
        Path path=Paths.get("c:\\demotext.txt");
        try{
            UserPrincipal owner=Files.getOwner(path);
            System.out.format("The owner of file is: %s%n",owner.getName());

            UserPrincipalLookupService lookupservice=FileSystems.getDefault().getUserPrincipalLookupService();
            Files.setOwner(path,lookupservice.lookupPrincipalByName("joe"));

            UserPrincipal newowner=Files.getOwner(path);
            System.out.format("Now the owner of file is: %s%n",newowner.getName());
        }
        catch(UnsupportedOperationException x){
            System.err.println(x);
        }
        catch(IOException x){
            System.err.println(x);
        }
    }
}

输出:
文件的所有者是:\Everyone
java.nio.file.attribute.UserPrincipalNotFoundException

程序抛出 IOException。这是否意味着我的操作系统限制了对文件所有者的修改?如果没有,请建议我一些解决方案。

4

1 回答 1

0

我验证你的代码。问题不在于更新,owner而是找到UserPrincinpal. 如果您分解以下陈述:

        UserPrincipalLookupService lookupservice=FileSystems.getDefault().getUserPrincipalLookupService();
        Files.setOwner(path,lookupservice.lookupPrincipalByName("joe"));

像这样:

        UserPrincipalLookupService lookupservice=FileSystems.getDefault().getUserPrincipalLookupService();
        UserPrincipal userPrincipal = lookupservice.lookupPrincipalByName("joe");
        Files.setOwner(path,userPrincipal);

您将在第二行遇到问题。可能无法找到名称为 "joe" 的现有 "Windows 用户"

我用我的 Windows 用户尝试了这个,并且成功地更改了所有者。

于 2012-10-04T16:26:22.733 回答