0

我在jsp中有以下内容:

<form action="/ucReady2/uploadservlet" method="post"
        enctype="multipart/form-data">
        <label for="filename_1">File: </label> <input class="wfs_button"
            id="filename_1" type="file" name="filename_1" size="50" /> <input
            type="input" name="rowindex" value="<%=rowIndexObj%>" /><input
            class="wfs_button" type="submit" value="Upload File" />
</form>

在 uploadservlet 中,我有:

String attribute = request.getParameter("rowindex");

该属性始终为空!。在我提交表单之前,输入字段本身就有一个值。servlet 无法读取此值。

4

1 回答 1

0

好的。我从文件上传网站找到了解决方案:

if (item.isFormField()) {
  if ("rowindex".equalsIgnoreCase(item.getFieldName())) {
     attribute = item.getString();
   }
}
于 2012-06-21T22:35:53.283 回答