1 4 5 9 10 package org.openlaszlo.utils; 11 12 import java.text.SimpleDateFormat ; 13 import java.text.ParseException ; 14 import java.util.Date ; 15 16 import org.openlaszlo.utils.ChainedException; 17 18 21 public class DateUtils { 22 23 26 private static SimpleDateFormat getFormatter() { 27 return new SimpleDateFormat ("EEE, dd MMM yyyy HH:mm:ss z"); 28 } 29 30 33 public static String getDateString(long d) { 34 return getFormatter().format(new Date (d)); 35 } 36 37 40 public static long getDate(String s) { 41 try { 42 return getFormatter().parse(s).getTime(); 43 } catch (java.text.ParseException e) { 44 throw new ChainedException(e); 45 } 46 } 47 } 48 49 | Popular Tags |