我正在使用以下代码。
private DateField startDateField = new DateField();
Date date = new Date();
startDateField.setValue(date);
Date date2 =startDateField.getValue()
问题是,当我调用startDateField.getValue()方法时,我得到日期但是时间设置为0.我的服务器在KOP中。我将日期作为IST传递。因为GWT根据时区调整日期。 KOP在不同的时区。如果我在IST中通过日期那么它应该与KOP时间完全匹配?请建议我。
谢谢!