首页 > 代码库 > 时间格式化24与12小时制

时间格式化24与12小时制

package 时间24与12小时制;

import java.text.SimpleDateFormat;

public class Test
{

	public static void main(String[] args)
	{
		System.out.println(getCurrebtDate12(System.currentTimeMillis()));
		System.out.println(getCurrebtDate24(System.currentTimeMillis()));
	}

	/**
	 * 12小时制,yyyy-MM-dd hh:mm:ss [h小写]
	 * @return 2014-08-26 01:56:58
	 */
	public static String getCurrebtDate12(long date)
	{
		String strDate = "";
		strDate = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(date);
		return strDate;
	}
	
	/**
	 * 24小时制,yyyy-MM-dd HH:mm:ss [H大写]
	 * @return 2014-08-26 13:56:58
	 */
	public static String getCurrebtDate24(long date)
	{
		String strDate = "";
		strDate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(date);
		return strDate;
	}
}

时间格式化24与12小时制