Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 struts 1.2 开发了一个 Web 应用程序,我需要以链接格式访问 jsp 中的本地文件((C:\Testing)。当用户单击文件名时,它会自动打开(没有下载选项)。文件可以是任何类型(pdf,excel,.doc ...)我试过了
即使您的 HTML 以正确格式的链接“C:\Testing”结束,远程用户的浏览器也会将其解释为指向他们的本地 C 驱动器(如果他们甚至有一个)。
相反,您需要实现一个文件下载 servlet:
实现一个简单的文件下载servlet
并在您的 JSP 中插入指向该 servlet 的链接。