How to get the published date of a page through Java API - Adobe Experience Manager(AEM)
This post will explain how to get the published date of a page through Java API in Adobe Experience Manager(AEM)public static Date getPublishDate(Page page) {
Date newDate = null;
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-mm-dd", Locale.getDefault());
if (page != null) {
String publishedDate = page.getProperties().get("publisheddate", "");
if(!"".equals(publishedDate)){
try {
newDate = sdf.parse(publishedDate);
} catch (ParseException e) {
}
}
}
return newDate;
}
No comments:
Post a Comment