How to format Joda-Time DateTime to only mm/dd/yyyy?
Note that in JAVA SE 8 a new java.time (JSR-310) package was introduced. This replaces Joda time, Joda users are advised to migrate. For the JAVA SE ≥ 8 way of formatting date and time, see below. Joda time Create a DateTimeFormatter using DateTimeFormat.forPattern(String) Using Joda time you would do it like this: String dateTime … Read more