Your preferences have been saved!
» Locale Bean Utils Demo - import org.apache.commons.beanutils.locale.LocaleBeanUtils; import java.util.Date; import java.util.GregorianCalendar; public class BeanUtilsExampleV5 {   public static void main(String args[]) throws Exception {     BeanUtilsExampleV5 diff = new BeanUtilsExampleV5();     Movie movie = diff.prepareData();     System.err.println(       LocaleBeanUtils.getProperty(movie, "dateOfRelease", "dd-MMM-yyyy"));   }... 16 Feb 12