从网络驱动器打开文件

时间:2015-10-06 13:06:54

标签: java windows

我尝试创建超链接以从网络驱动器G打开文件:

这是我的测试servlet的一部分:

@WebServlet(name="fileHandler", urlPatterns={"/fileHandler/*"})
public class FileServlet extends HttpServlet 
{
  private static final int DEFAULT_BUFFER_SIZE = 10240; // 10KB.
  ...
  protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
  {
    String requestedFile = request.getPathInfo();
    ...
    File file = new File("G:/test_dir", URLDecoder.decode(requestedFile, "UTF-8")); // cesta se nacita v kazdem doGet
    String contentType = getServletContext().getMimeType(file.getName());

    response.reset();
    response.setBufferSize(DEFAULT_BUFFER_SIZE);
    response.setContentType(contentType);
    response.setHeader("Content-Length", String.valueOf(file.length()));
    response.setHeader("Content-Disposition", "attachment; filename=\"" + file.getName() + "\"");
    BufferedInputStream input = null;
    BufferedOutputStream output = null;

    try 
    {
      input = new BufferedInputStream(new FileInputStream(file), DEFAULT_BUFFER_SIZE);
      output = new BufferedOutputStream(response.getOutputStream(), DEFAULT_BUFFER_SIZE);
      byte[] buffer = new byte[DEFAULT_BUFFER_SIZE];
      int length;
      while ((length = input.read(buffer)) > 0) 
      {
        output.write(buffer, 0, length);
      }
    } 
    finally 
    { 
      close(output);
      close(input);
    }
  }
}

我的HTML组件:

<a href="fileHandler/test.txt">TEST FILE</a>

网络驱动器在应用程序服务器上映射为G:\

我的localhost 应用服务器上的一切正常。我能够从本地驱动器C:打开文件,甚至可以从同一个网络驱动器G:。

打开文件

当我在真实服务器上启动JSF应用程序时,我只能从本地驱动器打开文件。 不是来自G:驱动器

我尝试过简单的JAVA应用程序(以查找java实例是否可以访问网络驱动器)并且它同时适用于(server和dev.PC):

public class Test 
{
  static void main(String[] args) 
  {
    String path = "G:/test_dir/test.txt";
    File file = new File(path);
    System.err.println(file.exists() ? "OK" : "NOK");
  }
} 

我尝试过不同的URI方案:

  • G:/test_dir
  • G:\\test_dir

以下根本不起作用:

  • file://server/g:/test_dir
  • ///server/g:/test_dir
  • \\\\server\\g\\test_dir ---&gt;事实上,这应该工作

我的开发PC和应用程序服务器应该有什么区别?

SOLUTION:

我发现links to network drive doesn't work in standalone Tomcat, but works in Eclipse + Tomcat,所以我必须使用完整的URI:

  • 案例Eclipse + Tomcat:路径G:/test_dir/test.txt 有效
  • Case Standalone Tomcat:路径\\\\server\\g\\test_dir\\test.txt 有效

2 个答案:

答案 0 :(得分:1)

如果您可以调试服务器并查看日志,请尝试以下操作:

String requestedFile = request.getPathInfo();
log.debug('requestedFile='+requestedFile);
String decodedFilename = URLDecoder.decode(requestedFile, "UTF-8");
log.debug('decodedFilename='+decodedFilename);


File dir = new File("G:/test_dir");
log.debug('File g:/test_dir is a dir:'+dir.isDirectory());

File file = new File(dir, decodedFilename);
log.debug('requested file = '+file.getAbsolutePath());
log.debug('file exists = '+file.isFile());

如果您没有设置日志记录框架,则可以使用System.out.println()代替log.debug(),但不建议将其用于生产用途。

这不会解决您的问题,但您将能够看到正在发生的事情。

答案 1 :(得分:0)

我发现links to network drive doesn't work in standalone Tomcat, but works in Eclipse + Tomcat,所以我必须使用完整的URI:

  • 案例Eclipse + Tomcat:路径G:/test_dir/test.txt正常工作
  • Case Standalone Tomcat:路径\\\\server\\g\\test_dir\\test.txt正常工作