您好,登錄后才能下訂單哦!
本文實(shí)例為大家分享了DateUtil工具類時(shí)間戳類型轉(zhuǎn)換的具體代碼,供大家參考,具體內(nèi)容如下
package com.sinosoft.media.sms.util; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class DateUtil { //當(dāng)前時(shí)間 //public static Date DATE_NOW=new Date(); /** * 得到完整的時(shí)間戳,格式:yyyyMMddHHmmssSSS(年月日時(shí)分秒毫秒) * @return 完整的時(shí)間戳 */ public static String getFullTimeStamp(){ return new SimpleDateFormat("yyyyMMddHHmmssSSS").format(new Date()) ; } /** * 得到簡單的時(shí)間戳,格式:yyyyMMdd(年月日) * @return 簡單的時(shí)間戳 */ public static String getSimpleTimeStamp(){ return new SimpleDateFormat("yyyyMMdd").format(new Date()) ; } /** * 根據(jù)指定的格式得到時(shí)間戳 * @param pattern 指定的格式 * @return 指定格式的時(shí)間戳 */ public static String getTimeStampByPattern(String pattern){ return new SimpleDateFormat(pattern).format(new Date()) ; } /** * 得到當(dāng)前日期格式化后的字符串,格式:yyyy-MM-dd(年-月-日) * @return 當(dāng)前日期格式化后的字符串 */ public static String getTodayStr(){ return new SimpleDateFormat("yyyy-MM-dd").format(new Date()) ; } /** * 時(shí)間戳,格式:yyyy-MM-dd HH:mm:ss(年-月-日 時(shí):分:秒) * @return 簡單的時(shí)間戳 */ 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; } }
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。