Struts 1 日期格式标签
Struts1标签库中有没有可以格式化java.util.Date对象的标签?
在 Struts 2 中,我可以使用 s:date
标签,但我找不到 Struts 1 的等效标签。
Is there any tag in Struts1 tag library which can format a java.util.Date
object?
In Struts 2, I can use the s:date
tag, but I can't find the Struts 1 equivalent.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不能使用格式属性吗?像这样的东西:
Can't you use format attribute? Something like:
Sruts 标记参考中没有类似的内容。但是,您可以使用 JSTL
fmt:formatDate
标记。 JSTL 和 Struts1 几乎齐头并进。它应该打印如下:
它使用
java.lang. text.SimpleDateFormat
在幕后。它的 Javadoc 对可用模式和样式进行了更多描述。Nothing like that appears in the Sruts tag reference. You can however use the JSTL
fmt:formatDate
tag for this. JSTL and Struts1 almost go hand in hand.Which should print like:
It uses the
java.text.SimpleDateFormat
under the hoods. Its Javadoc is more descriptive about the available patterns and styles.它适用于使用
format="MM-dd-yyyy"
作为bean:write
标记的属性。It works for the use of
format="MM-dd-yyyy"
as an attribute forbean:write
tag.