组合 TimeItem 和 DateItem 值

发布于 2024-07-20 06:15:45 字数 353 浏览 12 评论 0原文

我必须在 smartgwt 中组合 TimeItem 的时间值和 DateItem 的日期值。在输出中,我想要 java.util.Date 的日期对象。我尝试将这两个组合起来。我无法做到这一点。

示例代码是:

DateItem date=new DateItem();
TimeItem time=new TimeItem();
DynamicForm form=new DynamicForm();
form.setFields(date,time);

// java.util.Date selectedDate= ? Here I need the output

任何人都可以帮忙吗? 谢谢

I have to combine the time value for TimeItem and date value from DateItem in smartgwt.In output I want the date object for java.util.Date.I tried to combine these two.I couldnot do that.

Sample code is :

DateItem date=new DateItem();
TimeItem time=new TimeItem();
DynamicForm form=new DynamicForm();
form.setFields(date,time);

// java.util.Date selectedDate= ? Here I need the output

Can anyone help on this? thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

为你拒绝所有暧昧 2024-07-27 06:15:45

我还没有尝试过,但这是我有根据的猜测:

您可以使用还包括时间的日期格式设置 dateItem.setInputFormat(...) 和 dateItem.setDisplayFormat(...) 。

I haven't tried this, but this is my educated guess:

You can set the dateItem.setInputFormat(...) and dateItem.setDisplayFormat(...) using a date format that also includes time.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文