如何在 jsp 表单中填充 struts2 操作的日期对象?
我知道如何用简单类型(int、String)填充对象,但是如何对日期值执行此操作???
我的类(名为User
)有一个名为date
的属性,其类型为java.util.Calendar
,有什么方法可以自动填充此字段html/jsp 表单?
我的表格:
Date: <input type="text" name="user.date">
I know how to populate object with simple types (int, String) but how can I do this for a date value???
My class (called User
) has an attribute called date
of type java.util.Calendar
, is there any way to populate this field automatically on a html/jsp form?
My form:
Date: <input type="text" name="user.date">
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
日期 - 使用与当前请求关联的区域设置的 SHORT 格式
struts2.0.14
另请查看自定义转换器示例,
尝试实现自定义转换器,
然后将其注册到
属性文件中
MyAction-conversion.properties
dates - uses the SHORT format for the Locale associated with the current request
struts2.0.14
Also take a look at the custom converter example
try and implement a custom converter
then register it with
in a properties file
MyAction-conversion.properties
这里的 user.date 是 Date 类型,没有用 Calendar 检查。请检查
here the user.date is of Date type not checked with Calendar. please check