本文介绍了当使用enctype ="multipart/form-data"时,request.getParameter()返回null.在JSP中处理上传表单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用enctype ="multipart/form-data"上传多个文件以及一些注释.文件已上传,但request.getParameter()对于注释返回null.我该怎么办?预先感谢.

I want to upload multiple files along with some notes using enctype="multipart/form-data". The files are uploaded but request.getParameter() returns null for the notes. What should i do?Thanks in advance.

推荐答案

使用Apache的commons-iocommons-fileupload库. http://commons.apache.org/proper/commons-fileupload/using.html

Use commons-io and commons-fileupload libraries by Apache.http://commons.apache.org/proper/commons-fileupload/using.html

这篇关于当使用enctype ="multipart/form-data"时,request.getParameter()返回null.在JSP中处理上传表单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 03:10