溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

利用java如何實(shí)現(xiàn)轉(zhuǎn)換日期格式

發(fā)布時(shí)間:2020-11-10 16:13:23 來(lái)源:億速云 閱讀:258 作者:Leah 欄目:編程語(yǔ)言

利用java如何實(shí)現(xiàn)轉(zhuǎn)換日期格式?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。

java 日期各種格式之間的相互轉(zhuǎn)換實(shí)例代碼

java日期各種格式之間的相互轉(zhuǎn)換,直接調(diào)用靜態(tài)方法

實(shí)例代碼:

java日期各種格式之間的相互轉(zhuǎn)換,直接調(diào)用靜態(tài)方法


package com.hxhk.cc.util;
 
 
import java.text.SimpleDateFormat;
import java.util.Date;
 
import com.lowagie.text.pdf.codec.postscript.ParseException;
 
public class DateUtil {
 
  /**
   * @param args
   * @throws java.text.ParseException 
   * @throws ParseException 
   */
  public static void main(String[] args) throws ParseException, java.text.ParseException {
    DateUtil du = new DateUtil();
    //String s = du.numToDate(1350144260, "yyyy-MM-dd hh:mm:ss");
    long time = du.stringToLong("2012-10-15 8:44:53", "yyyy-MM-dd hh:mm:ss")/1000;
    long time1 = du.stringToLong("2012-10-15 20:44:53", "yyyy-MM-dd hh:mm:ss")/1000;
    String date = du.longToString(1350470693,"yyyy-MM-dd hh:mm:ss" );
    System.out.println(time);
    System.out.println(time1);
    System.out.println(date);
     
 
 
  }
  // date類(lèi)型轉(zhuǎn)換為String類(lèi)型
   // formatType格式為yyyy-MM-dd HH:mm:ss//yyyy年MM月dd日 HH時(shí)mm分ss秒
   // data Date類(lèi)型的時(shí)間
   public static String dateToString(Date data, String formatType) {
   return new SimpleDateFormat(formatType).format(data);
   }
   
   // long類(lèi)型轉(zhuǎn)換為String類(lèi)型
   // currentTime要轉(zhuǎn)換的long類(lèi)型的時(shí)間
   // formatType要轉(zhuǎn)換的string類(lèi)型的時(shí)間格式
   public static String longToString(long currentTime, String formatType)
   throws ParseException, java.text.ParseException {
   Date date = longToDate(currentTime, formatType); // long類(lèi)型轉(zhuǎn)成Date類(lèi)型
   String strTime = dateToString(date, formatType); // date類(lèi)型轉(zhuǎn)成String
   return strTime;
   }
   
   // string類(lèi)型轉(zhuǎn)換為date類(lèi)型
   // strTime要轉(zhuǎn)換的string類(lèi)型的時(shí)間,formatType要轉(zhuǎn)換的格式y(tǒng)yyy-MM-dd HH:mm:ss//yyyy年MM月dd日
   // HH時(shí)mm分ss秒,
   // strTime的時(shí)間格式必須要與formatType的時(shí)間格式相同
   public static Date stringToDate(String strTime, String formatType)
   throws ParseException, java.text.ParseException {
   SimpleDateFormat formatter = new SimpleDateFormat(formatType);
   Date date = null;
   date = formatter.parse(strTime);
   return date;
   }
   
   // long轉(zhuǎn)換為Date類(lèi)型
   // currentTime要轉(zhuǎn)換的long類(lèi)型的時(shí)間
   // formatType要轉(zhuǎn)換的時(shí)間格式y(tǒng)yyy-MM-dd HH:mm:ss//yyyy年MM月dd日 HH時(shí)mm分ss秒
   public static Date longToDate(long currentTime, String formatType)
   throws ParseException, java.text.ParseException {
   Date dateOld = new Date(currentTime); // 根據(jù)long類(lèi)型的毫秒數(shù)生命一個(gè)date類(lèi)型的時(shí)間
   String sDateTime = dateToString(dateOld, formatType); // 把date類(lèi)型的時(shí)間轉(zhuǎn)換為string
   Date date = stringToDate(sDateTime, formatType); // 把String類(lèi)型轉(zhuǎn)換為Date類(lèi)型
   return date;
   }
   
   // string類(lèi)型轉(zhuǎn)換為long類(lèi)型
   // strTime要轉(zhuǎn)換的String類(lèi)型的時(shí)間
   // formatType時(shí)間格式
   // strTime的時(shí)間格式和formatType的時(shí)間格式必須相同
   public static long stringToLong(String strTime, String formatType)
   throws ParseException, java.text.ParseException {
   Date date = stringToDate(strTime, formatType); // String類(lèi)型轉(zhuǎn)成date類(lèi)型
   if (date == null) {
   return 0;
   } else {
   long currentTime = dateToLong(date); // date類(lèi)型轉(zhuǎn)成long類(lèi)型
   return currentTime;
   }
   }
   
   // date類(lèi)型轉(zhuǎn)換為long類(lèi)型
   // date要轉(zhuǎn)換的date類(lèi)型的時(shí)間
   public static long dateToLong(Date date) {
   return date.getTime();
   }
   public static String numToDate(int number,String formatType){
     Date date = new Date(number);
     SimpleDateFormat sdf = new SimpleDateFormat(formatType);
     return sdf.format(date);
   }
 
}

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI