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.
我有一个jsp,它将一些从数据库检索到的表单数据发送到Servlet。
例子:
PaperId = 5 PaperPath = 'D:\upload\111\aaa.pdf'
如何实现使用此信息打开文件的 servlet?
如果您有文件位置,那么您是否有 servlet 或常规 java 应用程序都没有关系。只是FileInputStream用来读取文件,或者更好——commons-ioFileUtils
FileInputStream
FileUtils