我需要在图像的title属性中添加一个日期,以便在用户将鼠标悬停在其上时显示。问题是我想更改日期格式。
有什么想法吗?
<ice:graphicImage value="bean.image" title="#{bean.date}"/>
答案 0 :(得分:2)
直接在getter方法中进行
public String getDate() {
return new SimpleDateFormat("yyyy-MM-dd").format(this.date);
}
或抓住JSTL的<fmt:formatDate>
。
<fmt:formatDate value="#{bean.date}" pattern="yyyy-MM-dd" var="date" />
<ice:graphicImage value="bean.image" title="#{date}"/>
(在UIData
)