当前位置: 代码迷 >> Web前端 >> GWT 中日期格式化 ,处置Date
  详细解决方案

GWT 中日期格式化 ,处置Date

热度:96   发布时间:2012-09-20 09:36:50.0
GWT 中日期格式化 ,处理Date

?

1. 继承模块

在XX.gwt.xml中引入:

?

??? <inherits?name="com.google.gwt.i18n.I18N"/>??

?

2. 在代码中使用:

import?com.google.gwt.i18n.client.DateTimeFormat;???

?

?

?

?

?

在client 中使用SimpleDateFormat经常出现这个错误:

No source code is available for type java.text.SimpleDateFormat; did you forget to inherit a required module?

?

解决办法在上面。

DateTimeFormat?format?=?DateTimeFormat.getFormat("yyyy-MM-dd");??

  相关解决方案