如何替换这个已弃用的方法调用?
我正在浏览 GWT 教程,输入此行后,我的 IDE 抱怨说 对 DateTimeFormat.getMediumDateTimeFormat()
的调用已弃用:
lastUpdatedLabel.setText("上次更新: ” + DateTimeFormat.getMediumDateTimeFormat().format(new 日期()));
我该如何更换通话?
I'm going through the GWT Tutorials and after entering this line, my IDE complains that
the call to DateTimeFormat.getMediumDateTimeFormat()
is deprecated:
lastUpdatedLabel.setText("Last update:
" +
DateTimeFormat.getMediumDateTimeFormat().format(new
Date()));
How do I have to replace the call?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
根据 此文档,您需要使用
getFormat(DateTimeFormat.PredefinedFormat.DATE_MEDIUM)
According to this documentation, you need to use
getFormat(DateTimeFormat.PredefinedFormat.DATE_MEDIUM)
我无法得到工作的最后答案。它只需要一个日期戳即可给出相同的结果。
试试这个:
I could not get the last answer to work. It gives the same results with just a date stamp.
Try this:
奥利弗·韦勒,我可以听听您的更正或意见吗?
也许它对你来说太旧了...但我是 JAVA 和 GWT 的新手...
我想知道以下代码是否是此已弃用方法的良好且有效的解决方案。
谷歌教程给出了这个:
https://developers.google.com/web-toolkit/doc /latest/tutorial/codeclient#timestamp
我把这个改为
不知道为什么 Google 没有更新这个教程。
请在此处查看确认信息:https://code。 google.com/p/google-web-toolkit/issues/detail?id=8241#c3
感谢@qbektrix
Could I have your correction or maybe your opinion, Oliver Weiler ?
Maybe it is too old for you... but I'm new in JAVA and GWT...
I want to know if this following code is a good and efficient solution to this deprecated method.
Google Tutorial give this :
https://developers.google.com/web-toolkit/doc/latest/tutorial/codeclient#timestamp
I put this instead
Don't know why Google didn't update this tutorial.
Look a confirmation here : https://code.google.com/p/google-web-toolkit/issues/detail?id=8241#c3
Thanks to @qbektrix
@Manu,您可以替换
为
“这似乎是一个真实的 GWT 团队答案,因为我在 https://code.google.com/p/google-web-toolkit/issues/detail?id=8241#c3
@Manu, you can replace
with
It seems like an authentic GWT team answer as i found it at https://code.google.com/p/google-web-toolkit/issues/detail?id=8241#c3