不同的系統(tǒng),在操作的時(shí)候總是會(huì)有一點(diǎn)點(diǎn)懵圈。在使用Unix的時(shí)間戳的時(shí)候,我們還是會(huì)想念Windows的時(shí)間,那么我們?cè)趺窗裊nix的時(shí)間戳變成我們常見(jiàn)的Windows時(shí)間呢?
時(shí)間戳就是如1377216000000 這種格式我們?cè)贛ySQL數(shù)據(jù)庫(kù)中會(huì)經(jīng)常用到把時(shí)間轉(zhuǎn)換成時(shí)間戳或把時(shí)間戳轉(zhuǎn)換成日期格式了,下面我來(lái)介紹安卓中時(shí)間戳操作轉(zhuǎn)換方法。
一、原理
時(shí)間戳的原理是把時(shí)間格式轉(zhuǎn)為十進(jìn)制格式,這樣就方便時(shí)間的計(jì)算。好~ 直接進(jìn)入主題。
如: 2013年08月23日 轉(zhuǎn)化后是 1377216000000
二、步驟
1、創(chuàng)建 DateUtilsl類(lèi)。
代碼如下
importjava.text.ParseException;
importjava.text.SimpleDateFormat;
importjava.util.Date;
/*
* @author Msquirrel
*/
public class DateUtils {
privateSimpleDateFormat sf = null;
/*獲取系統(tǒng)時(shí)間 格式為:"yyyy/MM/dd "*/
public static String getCurrentDate() {
Date d = newDate();
sf = newSimpleDateFormat("yyyy年MM月dd日");
returnsf.format(d);
}
/*時(shí)間戳轉(zhuǎn)換成字符竄*/
public static String getDateToString(long time) {
Date d = newDate(time);
sf = newSimpleDateFormat("yyyy年MM月dd日");
returnsf.format(d);
}
/*將字符串轉(zhuǎn)為時(shí)間戳*/
public static long getStringToDate(String time) {
sdf = newSimpleDateFormat("yyyy年MM月dd日");
Date date = newDate();
try{
date = sdf.parse(time);
} catch(ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
returndate.getTime();
}
2、在對(duì)應(yīng)使用的地方調(diào)用就可以了。
代碼如下
DateUtils.getCurrentDate(); //獲取系統(tǒng)當(dāng)前時(shí)間
DateUtils.getDateToString(時(shí)間戳); //時(shí)間戳轉(zhuǎn)為時(shí)間格式
DateUtils.getStringToDate("時(shí)間格式");//時(shí)間格式轉(zhuǎn)為時(shí)間戳