String formatted = format.format(created.toJavaDate());
ExtLibUtil.getViewScope().put("javaTest", formatted);
}
public void getOtherDates() {
Session s = Factory.getSession();
Database currDb = s.getCurrentDatabase();
View contacts = currDb.getView("AllContacts");
Document doc = contacts.getFirstDocument();
StringBuilder sb = new StringBuilder();
SimpleDateFormat format = new SimpleDateFormat("dd/MM/yyyy hh:mm");
sb.append("Created: " + format.format(doc.getCreatedDate()));