我是普通vfs的新手。我正在尝试阅读位于http://starpoint.com/ ...
的Excel工作表每当我在浏览器上使用此网址时,都会弹出我需要的身份验证。我尝试使用上面的代码,但它没有用。
StaticUserAuthenticator auth = new StaticUserAuthenticator("domain", "username", "password");
FileSystemOptions opts = new FileSystemOptions();
DefaultFileSystemConfigBuilder.getInstance().setUserAuthenticator(opts, auth);
FileObject fo = VFS.getManager().resolveFile("htttp://starpoint.com/../", opts);
我还尝试使用此格式http://username:password@starpoint.com/..../在网址中输入用户名和密码,但它不起作用。
如果我的用户名是xyz \ john还有一件事,那么xyz会在代码的第一行中成为我的域吗?任何其他方式也将不胜感激。