-2
請在格式轉換數據幫助 」2007年5月16日12:00:00 AM「 以GMT數據格式2007-05-16T12:00:00.000 + 0000 「在Java中使用 以下方法像 「轉換日期爲GMT日期格式
public String getGMTMillis(Date time)
{
if (time != null)
{
Calendar calendar = Calendar.getInstance();
calendar.setTime(time);
calendar.setTimeZone(TimeZone.getTimeZone("GMT"));
return "" + calendar.getTimeInMillis();
}
return "";
}
把你的標題,並在谷歌搜索中使用它。 –