3

我正在开发一个遇到问题的小型 Web 应用程序。在这里,我有一个使用迭代器在 jsp 页面中显示的内容列表。对于每个内容,可以有一些与之关联的图像。我想将这些图像与内容一起显示。如何做到这一点。

这是我的内容迭代器。

<s:iterator value="contentList">
     <s:property value="id"/>
     <s:property value="topic"/>

现在在这个迭代器标记中,我想使用第一个迭代器的“id”属性动态生成第二个迭代器。我有一个通过“id”属性映射到每个内容的图像数据库表。我想获取与该特定内容关联的图像列表,然后将它们显示在 jsp 页面中。图像可以是多个。这怎么可能实现。请帮忙。

图像存储在文件系统中,路径存储在数据库中。为了显示单个图像,我正在做的是,我从动作类中的数据库中获取图像路径,然后通过 fileInputStream 将图像传递给 jsp 页面。当我尝试显示多个图像时出现问题。

用于在jsp中显示图像的代码

<img src="contentimage.action?contentID=<s:property value="id"/>"/>

<s:property value="id"/>是内容迭代器可用的值。

在行动课上

Image ImageObject=cd.getImageObject(contentID);
File file = new  File(ImageObject.getFilePath()+"/"+ImageObject.getFileName());         
FileInputStream fileInputStream = new FileInputStream(file);

Image是一个具有图像属性的 Bean 类,例如文件系统中的 FilePath、图像文件名等。现在,对于给定contentID的 ,数据库中可以有多个图像,所有图像都具有不同的文件名和文件路径。我可以将它们放在Image类型列表中。现在如何在 jsp 页面中迭代它们并显示这些路径的图像。希望,这次我把我的问题说清楚了。

编辑

映射到 Hibernate 的我的内容类。

private int id;
private String topic;
//getters and Setters

我的 ContentImage 类映射到 Hibernate。

private int contentId; // this is the id of the Content class
private String fileName; //image file name
private String filePath; // image file path, actual file is stored in file system
private String imageByte; //Base64 string of the image file
//getters and setters

现在,在加载视图 jsp 之前的动作类中,我得到了内容列表。

contentList=//got the list here;

现在使用迭代器在 jsp 中显示它。

<s:iterator value="contentList">
   <s:property value="id"/>
   <s:property value="topic"/>
   Now here i want a second iterator of my ContentImage class having a list of images corresponding to the id value of the contentList iterator.
   //This is where i am having the problem. I can display single image with this:
  <img src="contentimage.action?contentID=<s:property value="id"/>"/> //But i need to display all the images associated with this id.

   So i need an iterator created dynamically here with the id attribute and then display the images. Like:
   <s:iterator value="contentImageList">
      <img src="displayimage.action?filepath=<s:property value="filePath"/>"/>
   </s:iterator>
  </s:iterator>

我无法创建第二个迭代器。请帮助我。

4

1 回答 1

3

这里有很多变量:图像是在数据库中,还是在文件系统中,只有路径/URI 在数据库中?你如何在页面上显示它们?Base64 数据 URI 方案哎呀,没有缓存)?你如何加载它们?在页面加载之前的 Action 中,或者在带有例如<s:action />tag 的迭代中?

假设您有一个具有简单属性的对象并且包含来自字节数组List<String>的 Base64 转换图像(使用 Apache Commons 的encodeBase64URLSafeString )的基本场景:

class Row {
    private Long id;
    private String topic;
    private List<String> images;
    /* GETTERS AND SETTERS */
}

并在到达视图之前在操作中加载这些对象的列表:

private List<Row> rows;

/* GETTER AND SETTER */

public String execute(){
    rows = loadRowsInSomeWay();
    return SUCCESS;
}

然后在 JSP 中你可以像这样绘制它们:

<s:iterator value="rows">
     <s:property value="id"/>
     <s:property value="topic"/>

     <s:iterator value="images">
         <img src="data:image/jpeg;base64,<s:property/>"/>
     </s:iterator>
</s:iterator>

编辑

假设您已经为一个图像工作,并且您具有像上面这样的结构,具有一些属性和一个称为“图像”的字符串(或长,或其他)列表,其中包含id图像:

<s:iterator value="rows">
     <s:property value="id"/>
     <s:property value="topic"/>

     <s:iterator value="images">
         <img src="contentimage.action?contentID=<s:property />"/>             
     </s:iterator>
</s:iterator>
于 2013-11-16T14:09:07.047 回答