我正在使用google data api,它以日期时间格式提供日期。我想以公历日期格式转换此DateTime格式日期。有谁知道这样做的任何方法?
**编辑问题*
答案 0 :(得分:2)
class绝对不是Google最好的作品(我链接到API,所以我可以确认我们正在讨论相同的类和版本)。这就是我要做的事情:
public class DateTimeConverter extends DateTime {
private DateTime originalTime;
public DateTimeConverter(DateTime originalTime) {
this.originalTime = originalTime;
}
public java.util.Date getDate() {
return new java.util.Date(this.value);
}
}
样本用法:
DateTime originalTime;
//Populate variable and then:
java.util.Date myDate = new DateTimeConverter(originalTime).getDate();
从那里你可以制作一个日历。处理如果DateTime仅代表Date以及时区问题该怎么办,你可以从那里处理(我不知道你的要求)但是如果你必须认真对待它,那么使用JodaTime来处理这个问题就像可能的。
答案 1 :(得分:2)
同时检查此
public static XMLGregorianCalendar getGregorianDate(Date date) {
XMLGregorianCalendar xMLGregorianCalendar = null;
try {
GregorianCalendar c = new GregorianCalendar();
c.setTime(date);
xMLGregorianCalendar = DatatypeFactory.newInstance()
.newXMLGregorianCalendar(c);
} catch (Exception e) {
e.printStackTrace();
}
return xMLGregorianCalendar;
}
public static Date getDate(XMLGregorianCalendar xmlGregorianCalendar) {
Date date = xmlGregorianCalendar.toGregorianCalendar().getTime();
return date;
}
答案 2 :(得分:0)
这很简单:
DateTime d = event.getEdited();
Date d = new Date(d.getValue());
答案 3 :(得分:0)
这是我为我的一个应用程序创建的学习测试:
package learning;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.TimeZone;
import org.apache.commons.lang3.ArrayUtils;
import org.junit.Assert;
import org.junit.Test;
import com.google.gdata.data.DateTime;
public class GDataDateTimeTest {
@Test public void should_be_converted_to_gregorian_calendar() {
// String[] timeZoneIDs = TimeZone.getAvailableIDs();
// for (String timeZoneID : timeZoneIDs)
// System.out.println(timeZoneID);
Date startingDate = date("02 Jan 2013");
String timeZoneID = "Europe/London";
DateTime datetime = new DateTime(startingDate, TimeZone.getTimeZone(timeZoneID));
// *** start conversion to a gregorian calendar:
// we need to multiply the GData DateTime.tzShift * 60000 (the opposite of what you can find in the constructor used previously [search for the code])
String[] availableTimeZoneIDsForOffset = TimeZone.getAvailableIDs(datetime.getTzShift() *60000);
// available timeZone IDs for the offset should contains our timeZoneID
Assert.assertTrue(ArrayUtils.contains(availableTimeZoneIDsForOffset, timeZoneID));
// then create a GregorianCalendar with one of the timeZone found for the timeZone offset
// and set time in millis with GData DateTime.value
String oneOfTheTimeZonesFoundBefore = availableTimeZoneIDsForOffset[0];
GregorianCalendar cal = new GregorianCalendar(TimeZone.getTimeZone(oneOfTheTimeZonesFoundBefore));
cal.setTimeInMillis(datetime.getValue());
Assert.assertEquals(startingDate.getTime(), cal.getTimeInMillis());
}
private Date date(String dateAsText) {
try {
return new SimpleDateFormat("dd MMM yyyy").parse(dateAsText);
} catch (ParseException e) {
throw new RuntimeException(e);
}
}
}
我添加了评论,以帮助您找到如何使用时区偏移量转换GData DateTime
。