Here you can find the source of formatDayTime(String day)
public static java.util.Date formatDayTime(String day)
//package com.java2s; /*/* w w w . j av a 2s . c om*/ * Copyright 2010 Mttang.com All right reserved. This software is the * confidential and proprietary information of Mttang.com ("Confidential * Information"). You shall not disclose such Confidential Information and shall * use it only in accordance with the terms of the license agreement you entered * into with Mttang.com. */ import java.text.ParseException; import java.text.SimpleDateFormat; public class Main { static final SimpleDateFormat yyyyMMdd = new SimpleDateFormat("yyyy-MM-dd"); public static java.util.Date formatDayTime(String day) { try { return yyyyMMdd.parse(day); } catch (ParseException ex) { ex.printStackTrace(); return new java.util.Date(); } } }