public static Date convertStringToDate(String dateStr) throws ParseException { if (dateStr == null) throw new ParseException("too few character in date string", 0); return format.parse(dateStr.substring(0, dateStr.length())); }
public static String convertDatetoString(Date date) { return format.format(date); }