本文实例为大家分享了DateUtil工具类时间戳类型转换的具体代码,供大家参考,具体内容如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
package com.sinosoft.media.sms.util; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class DateUtil { //当前时间 //public static Date DATE_NOW=new Date(); /** * 得到完整的时间戳,格式:yyyyMMddHHmmssSSS(年月日时分秒毫秒) * @return 完整的时间戳 */ public static String getFullTimeStamp(){ return new SimpleDateFormat( "yyyyMMddHHmmssSSS" ).format( new Date()) ; } /** * 得到简单的时间戳,格式:yyyyMMdd(年月日) * @return 简单的时间戳 */ public static String getSimpleTimeStamp(){ return new SimpleDateFormat( "yyyyMMdd" ).format( new Date()) ; } /** * 根据指定的格式得到时间戳 * @param pattern 指定的格式 * @return 指定格式的时间戳 */ public static String getTimeStampByPattern(String pattern){ return new SimpleDateFormat(pattern).format( new Date()) ; } /** * 得到当前日期格式化后的字符串,格式:yyyy-MM-dd(年-月-日) * @return 当前日期格式化后的字符串 */ public static String getTodayStr(){ return new SimpleDateFormat( "yyyy-MM-dd" ).format( new Date()) ; } /** * 时间戳,格式:yyyy-MM-dd HH:mm:ss(年-月-日 时:分:秒) * @return 简单的时间戳 */ public static String getDateTimeStamp(Date date){ return new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss" ).format(date) ; } public static Date getDateByString(String str){ SimpleDateFormat sim= new SimpleDateFormat( "yyyy-MM-dd hh:mm:ss" ); Date dateTime = null ; try { dateTime = sim.parse(str); } catch (ParseException e) { e.printStackTrace(); } return dateTime; } } |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://blog.csdn.net/xuetan121/article/details/8224658