Here you can find the source of StringToDateByformat1(String time)
public static Date StringToDateByformat1(String time) throws ParseException
//package com.java2s; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static final SimpleDateFormat format1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); public static Date StringToDateByformat1(String time) throws ParseException { return format1.parse(time); }/*from www . j a v a 2s .c o m*/ }