如何将RFC 3339 com.google.api.client.util.DateTime转换为java中的DateTime。
例如我正在" 2014-07-21T16:35:27.000Z"我需要转换成" 2014年7月15日下午6:07:25"格式。
无论如何转换它?
这就是我的尝试。
我已将DateandTime保存为mongo db中的字符串。
public Map<String, String> getYouTubeLastFetchDateTime(String key) {
System.out.println("Inserting data first time....");
Date nowDate = new Date();
Date dateBefore = new Date(nowDate.getTime() - 7 * 24 * 3600
* 1000);
Utils utils = new Utils();
DBCollection collection = utils.getStaging().getCollection(
DB_YOUTUBE_COLLECTION_NAME);
if (null != collection) {
CIPKeyWord keyword = new CIPKeyWord();
keyword.setLastFeachedTime(dateBefore);
keyword.setName(key);
DBObject dbObject = getDBObject(keyword);
collection.save(dbObject);
// ObjectId id = (ObjectId) dbObject.get("_id");
}
queryObject = new BasicDBObject().append("name", key);
result = dao.findOne(queryObject, DB_YOUTUBE_COLLECTION_NAME);
lastFetchedTime = (String) result.get("lastFeachedTime");
nextPageToken = (String) result.get("nextPageToken");
prevPageToken = (String) result.get("prevPageToken");
}
private String getKeyword() {
Map<String, String> paginationInfo = utils
.getYouTubeLastFetchDateTime(key);
String dateTime = paginationInfo.get("lastFechedDate");
date = new SimpleDateFormat("MMMM dd, yyyy", Locale.ENGLISH)
.parse(dateTime);
com.google.api.client.util.DateTime.DateTime lastFechedDate = new DateTime(date);
}
现在更新日期我以Rfc3339格式获取日期,我必须将其转换为java.util.Date格式。
public static boolean updateYouTubeLastFetchDate(String keyword,
DateTime newFetchTime, String nextPageToken, String prevPageToken){
BasicDBObject updateDocument = new BasicDBObject();
updateDocument.append(
"$set",
new BasicDBObject().append("nextPageToken",
nextPageToken).append("prevPageToken",
prevPageToken)
.append("lastFeachedTime",
newFetchTime.toString())
);
CIPDBUtils utils = new CIPDBUtils();
DBCollection collection = utils.getStaging().getCollection(
DB_YOUTUBE_COLLECTION_NAME);
collection.update(queryObject, updateDocument);
}
答案 0 :(得分:4)
com.google.api.client.util.DateTime dt = ...;
新日期(dt.getValue());
答案 1 :(得分:3)
如果我理解您的问题,您可以使用SimpleDateFormat
之类的,
String in = "2014-07-21T16:35:27.000Z";
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSXXX");
System.out.println(sdf.parse(in));
答案 2 :(得分:0)
com.google.api.client.util.DateTime包含两个字段: 值 - 自纪元以来的ms tzShift - 相对于UTC的最小时移 所以,你必须考虑时间转移。 新日期(dateTime.getValue()+ dateTime.getTimeZoneShift()* 60000L )