0

我有这样的表格:

  <form id="test" name="test" action="/pages/font/getFontTitle.jsp" method="POST" enctype="multipart/form-data">
    <div class="dialog">
      <table>
        <tbody>
          <tr class="prop"><td valign="top">Name</td><td><input type="text" name="name"></td></tr>
          <tr class="prop"><td valign="top"><input type="file" name="fname" size="62" value="" id="fname"/></td><td><span class="button"><s:submit/></span></td></tr>
        </tbody>
      </table>
    </div> 
  </form>

我的 servlet 看起来像这样:

String contentType=request.getContentType(),Location="0.";
out.println("Done");
System.out.println("contentType = "+contentType);

  boolean isMultipart=ServletFileUpload.isMultipartContent(request);           // Check that we have a file upload request
  System.out.println("isMultipart = "+isMultipart);

  int formDataLength=request.getContentLength();                           // We are taking the length of Content type data
  byte dataBytes[]=new byte[formDataLength];
  System.out.println("dataBytes = "+dataBytes.length+"\n"+dataBytes.toString());

  java.util.Map<java.lang.String,java.lang.String[]> ParameterMap=request.getParameterMap();
  Iterator it=ParameterMap.entrySet().iterator();
  while (it.hasNext())
  {
    Map.Entry pair=(Map.Entry)it.next();
    System.out.println(pair.getKey()+" = "+(pair.getValue()).toString());
//    it.remove(); // avoids a ConcurrentModificationException
  }
  System.out.println("request = \n"+request.getParameterNames().toString());

  if (isMultipart)
  {
    FileItemFactory factory=new DiskFileItemFactory();
    ServletFileUpload upload=new ServletFileUpload(factory);
    List items=null;
Location+="1.";
    try { items=upload.parseRequest(request); }
    catch (FileUploadException e) { e.printStackTrace(); }
    Location+="2.";
    Iterator itr=items.iterator();
    Location+="3.";
    while (itr.hasNext()) 
    {
        Location+="4.";
      FileItem item=(FileItem)itr.next();
      if (item.isFormField())
      {
        String name=item.getFieldName(),value=item.getString();
        System.out.println("name = "+name+"  value = "+value);
        Location+="5.";
      }
      else
      {
        try
        {
          Location+="6.";
          String itemName=item.getName(),savedFilePath=itemName;
          File savedFile=new File(savedFilePath);
          System.out.println("savedFile = "+savedFile.getAbsolutePath());
          item.write(savedFile);
        }
        catch (Exception e) { e.printStackTrace(); }
      }
    }
  }
Location+="e.";

  out.println(" [ "+Location+" ]");
  out.flush();

我得到的结果是:

contentType = multipart/form-data; boundary=---------------------------15890672924370
isMultipart = true
dataBytes = 35909
[B@14d3ba9
name = [Ljava.lang.String;@187f9d7
request = 
java.util.Vector$1@23ca6e

dataBytes 中有一个文件,但它从未进入 while (itr.hasNext()) 循环,jsp 输出为:Done [ 0.1.2.3.e. ] ,从未到达位置 4,5,6。

[1] 为什么?[2] 如何将“dataBytes = [B@14d3ba9”变成可读的东西或文件?[3] 如何将“name = [Ljava.lang.String;@187f9d7”转为原始字符串值?[4] 我正在使用“(pair.getValue()).toString()”,但为什么它不是可读字符串?

4

3 回答 3

1

客户端只会发送一次 HTTP 请求正文。

但是,您的代码试图读取请求正文两次。第一次被getParameterMap()调用:

java.util.Map<java.lang.String,java.lang.String[]> ParameterMap=request.getParameterMap();

第二次由 Apache Commons FileUpload (将面临一个空请求):

try { items=upload.parseRequest(request); }

这是行不通的。

仅使用标准 Servlet API 方法Apache Commons FileUpload。

也可以看看:

于 2012-10-15T22:00:04.823 回答
0

使用应该使用servelt 3.0规范并相应地注释您的servlet,然后request.getParts()使用所有多部分数据。阅读它。

于 2012-10-15T20:23:38.267 回答
0

子问题 1,3,4:如果您不能使用 Servlet 3.0 中添加的文件上传功能,我认为您最好使用Commons Fileupload,或多或少是将文件上传到 servlet 的事实标准。它功能强大,经过良好测试并且可以正常工作。

子问题 2:ServletRequest 的 getParameterMap 的 Javadoc指出:

返回: 一个不可变的 java.util.Map,其中包含作为键的参数名称和作为映射值的参数值。参数映射中的键是字符串类型。参数映射中的值是字符串数组类型。

重点补充:返回的值是字符串数组,而不是字符串。这就是为什么你会得到奇怪的输出值。尝试

System.out.println( pair.getKey()+" = "+ pair.getValue()[0] );

但也要考虑在你的 servlet 中使用记录器,这比在 System.out 中倾倒东西更好

ps:使用IDE中可能提供的代码格式化功能,您的代码很难阅读。

于 2012-10-15T20:27:55.097 回答