static String dateToDayOfMonth(String date) { DateTime dateTime = DateTime.parse(date).toLocal(); return DateFormat.d().format(dateTime); }