我想始终使用偏移量 -6 保留 CST 时间,目前我得到的是2018-03-15T05:08:53-05:00
.
但我想像2018-03-15T05:08:53-06:00
全年一样将其更改为偏移量 -6。
TimeZone tz= TimeZone.getdefault();
if(tz.inDayLightTime())
{
getCSTDate(cal)
// I would like to change the logic here.
}
public XMLGregorianCalendar getCSTDate(Calendar cal)
{
return XMLGregorianCalendar;
}
我的输入类型:日历输出:XMLGregorianCalendar