0

我正在使用休眠将大量文本保存为数据库中的 BLOB。因此,我有一个类实例作为字节 []。

public class News {
  ...
  private byte[] content;

  // getter and setter
  ...
}

我正在尝试在 JSP 中输出诸如字符串之类的变量,例如使用<s:property>标签。谁能给个提示?

4

1 回答 1

0

Struts2 使用 OGNL http://commons.apache.org/ognl/。所以在 JSP 中就像在 Java 中那样做。

<s:property value="new java.lang.String(news.content)"/>
于 2012-10-21T11:52:58.247 回答