代码之家  ›  专栏  ›  技术社区  ›  Lydon Ch

JSP中的字节数组复制

  •  0
  • Lydon Ch  · 技术社区  · 14 年前

    我试图在GooGeAppEngEngJava中附加2个图像(如字节[]),然后要求HttpResponseServlet显示它。 但是,第二个图像似乎没有被附加。

    下面的代码片段有什么问题吗?

    resp.setContentType("image/jpeg");
    byte[] allimages = new byte[1000000]; //1000kB in size
    int destPos = 0;
    for(Blob savedChart : savedCharts) {
      byte[] imageData = savedChart.getBytes(); //imageData is 150k in size
      System.arraycopy(imageData, 0, allimages, destPos, imageData.length);
      destPos += imageData.length;
    }
    
    resp.getOutputStream().write(allimages);
    return;
    

    当做

    2 回复  |  直到 14 年前
        1
  •  1
  •   Brian Agnew    14 年前
        2
  •  1
  •   Dennis C    14 年前