我正在尝试使用简单的上载html表单上载XML文件(text.xml),定期在servlet中将其读取为FileItem,然后获取ACTUAL文件(text.xml),以便我可以打印,保存等。有没有简单的方法可以做到这一点?有人告诉我使用FileItem的属性getInputStream ..在某个地方有示例吗?有没有更短的方法?

谢谢

最佳答案

只需使用 FileItem#write() 方法即可,就像User GuideApache Commons FileUpload中演示的一样。

File file = new File("/path/to/text.xml");
fileItem.write(file);
就这样。
也可以看看:
  • How do I set the folder for storing file uploads using Commons FileUpload
  • How to upload files to server using JSP/Servlet?
  • 10-06 14:58