Here you can find the source of parseDate(String value)
public static Date parseDate(String value)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static SimpleDateFormat HEADER_DATE; public static Date parseDate(String value) { Date date = null;// w w w . jav a 2s. com try { date = HEADER_DATE.parse(value); } catch (Exception e) { } return date; } }