Here you can find the source of parse_default(String time)
public static Object parse_default(String time)
//package com.java2s; //License from project: Apache License import java.text.ParseException; import java.text.SimpleDateFormat; public class Main { public static SimpleDateFormat FORMATER_3 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); public static Object parse_default(String time) { try {//from www.j a va2s . c om return FORMATER_3.parseObject(time); } catch (ParseException e) { e.printStackTrace(); } return null; } }