如何使用远程服务器凭据从远程服务器删除读写权限文件

时间:2017-04-26 06:49:33

标签: java

我需要使用远程服务器凭据从远程服务器删除读写权限文件。我已在下面编码,但它无效。

String domain="k.com";
String userName="sampleuser";
String password="samplepassword";

UserAuthenticator auth=new StaticUserAuthenticator(domain, userName, password);
System.out.println("Auth::" + auth);
FileSystemOptions opts=new FileSystemOptions();

DefaultFileSystemConfigBuilder.getInstance().setUserAuthenticator(opts, auth);
FileObject fo=VFS.getManager().resolveFile("\\\\system\\testfile\\testfile.html",opts);

fo.delete();

请帮我解决这个问题

0 个答案:

没有答案