如何使用常见的vfs从http服务器读取excel,显示在浏览器中弹出的身份验证?

时间:2015-01-17 16:04:10

标签: java http apache-commons-vfs

我是普通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会在代码的第一行中成为我的域吗?任何其他方式也将不胜感激。

0 个答案:

没有答案