3

我对以下情况有点迷茫:

  1. 用户上传图片 - upload.jsp (multipart/form-data)
  2. servlet 完成所有脏活(保存图像、获取名称、保存名称、重定向到 display.jsp)
  3. 在 display.jsp 上,应该显示刚刚上传的图像

不幸的是 display.jsp 页面是空的。当我在 Firefox 下查看源页面时,一切似乎都很好,提供了指向图像的有效链接。

<img src="/UploadTest/avatar/55_445194458350473498.png" border=0 width="48px" height="48px"/>

但在媒体信息下,我可以看到一些奇怪的信息:

Location:   http://localhost:8084/UploadTest/avatar/55_445194458350473498.png
Type:       text/html
Size:       Unknown (not cached)
Dimensions: 0px x 0px (scaled to 0px x 16px)

下面是用于上传、处理和显示图片的代码:

上传.jsp

<form action="Upload" method="post" enctype="multipart/form-data">
  <label for="file">File:</label>
  <input type="file" id="file" name="file">
  <input type="submit" value="submit">
</form>

上传.java

(MultipartMap servlet 属于 BalusC,http: //balusc.blogspot.com.au/2009/12/uploading-files-in-servlet-30.html )

package test;

import java.io.File;
import java.io.IOException;
import java.util.Arrays;

import javax.servlet.ServletException;
import javax.servlet.annotation.MultipartConfig;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpSession;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import test.MultipartMap;


@WebServlet(urlPatterns = { "/Users/Thomas/NetBeansProjects/UploadTest/web/Upload" })
@MultipartConfig(location = "/Users/Thomas/NetBeansProjects/UploadTest/web/avatar", maxFileSize = 10485760L) // 10MB.
public class UploadServlet extends HttpServlet {

    @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {  
    }

    @Override
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException
    {

    MultipartMap map = new MultipartMap(request, this);

    File file = map.getFile("file");

    String filename = file.getName();

    HttpSession session = request.getSession();
    session.setAttribute("filename", filename);

    request.getRequestDispatcher("/display.jsp").forward(request, response);
    }
}

显示.jsp

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
  </head>
  <body>
      <div>
          <img src="${pageContext.request.contextPath}/avatar/${filename}" border=0 width="48px" height="48px"/>
      <div>
  </body>
</html>

如果我在 display.jsp 中将 ${filename} 替换为之前上传的特定图像的静态名称,则显示没有问题,所以我认为图像已正确处理,只是前端缺少某些东西?

顺便说一句:当调试器处于活动状态时,一切正常,但当关闭时问题又回来了。

干杯,

托马斯

4

2 回答 2

0

很好的解释。我解决了你的问题并创建了它的样本。我有和你一样的问题。解决方案是在 display.jsp 文件中放入以下行:

<%@page isELIgnored="false" %>

我认为 EL 和 page 的问题无法正确评估。下面是代码:upload.jsp 和upload.java 和你的一样。

显示.jsp:

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@page isELIgnored="false" %>
<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
  </head>
  <body>
      <div>
          <img src="${pageContext.request.contextPath}/images/${filename}" border=0 width="48px" height="48px" alt="Image Not found"/>
      <div>
  </body>
</html>

希望这也对你有用

谢谢

于 2012-09-29T09:25:21.083 回答
-1

您可以在图片查看器中查看上传的图像吗?

文件大小是否正确且数据未损坏?

您的服务器是否在端口 8084 上运行?

我想知道为什么当它应该是 image/png 时你会输入 text/html。

于 2012-09-29T06:23:21.837 回答