|
@@ -219,8 +219,9 @@ public class StringUtil {
|
|
if (datetime.length() > 0) {
|
|
if (datetime.length() > 0) {
|
|
date = DateUtils.parseDate(datetime, Content.dateFormats);
|
|
date = DateUtils.parseDate(datetime, Content.dateFormats);
|
|
}
|
|
}
|
|
- } catch (ParseException ex) {
|
|
|
|
- ex.printStackTrace();
|
|
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+// ex.printStackTrace();
|
|
|
|
+ return null;
|
|
}
|
|
}
|
|
return date;
|
|
return date;
|
|
}
|
|
}
|