Android日期和时间获取和转换

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
// 时间戳转换

public class DateUtils {

    private static SimpleDateFormat sf = null;

    /*获取系统时间 格式为:"yyyy/MM/dd "*/
    public static String getCurrentDate() {
        Date d = new Date();
        sf = new SimpleDateFormat("yyyyMMddHH");
        return sf.format(d);
    }

    /*获取系统时间 格式为:"yyyy-MM-dd HH:mm:ss"*/
    public static String getCurrentDateF() {
        Date d = new Date();
        sf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        return sf.format(d);
    }

    /*将字符串转为时间戳*/
    public static long getStringToDate(String time) {
        sf = new SimpleDateFormat("yyyyMMddHH");
        Date date = new Date();
        try {
            date = sf.parse(time);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return date.getTime();
    }

    /*时间戳转换成字符窜*/
    public static String getDateToString(long time) {
        Date d = new Date(time);
        sf = new SimpleDateFormat("yyyyMMddHH");
        return sf.format(d);
    }


    /**
     * 将20150203100255字符串转换为时间 yyyy-MM-dd HH:mm:ss
     *
     * @param strDate
     * @return
     */
    public static String strToDate(String strDate) {

        SimpleDateFormat sf1 = new SimpleDateFormat("yyyyMMddHHmmss");
        SimpleDateFormat sf2 =new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

        String sfstr = "";
        try {
            sfstr = sf2.format(sf1.parse(strDate));
        } catch (ParseException e) {
            e.printStackTrace();
        }

        return sfstr;
    }

    //将time : 1447830272000转化为yyyy-MM-dd
    public static String longToDateStr(long strDate) {
        Date date=new Date(strDate);
        SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        String strs=sdf.format(date);
        return strs;
    }

    //把字符串转为日期
    public static Date ConverToDate(String strDate) {
        SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        Date d = null;
        try {
            d = df.parse(strDate);
        } catch (ParseException e) {
            e.printStackTrace();
        }
        return d;
    }


    //把日期转换为星期
    public static String dateToWeek(Date date) {
        SimpleDateFormat sf = new SimpleDateFormat("E");
        return sf.format(date);
    }

    //把日期转换为星期
    public static String dateToDate(Date date) {
        SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
        return sf.format(date);
    }


    //获得最近6个年月的集合
    public static String[] getLast6Months(){
        String[] last6Months = new String[6];
        Calendar cal = Calendar.getInstance();
        SimpleDateFormat matter=new SimpleDateFormat("yyyy-MM");
        cal.add(Calendar.MONTH,+1);
        for(int i=0; i<6; i++){
            cal.add(Calendar.MONTH, -1);
            last6Months[5-i] = matter.format(cal.getTime());
        }
        return last6Months;
    }


    //获取当前时间的毫秒之
    public static long getDateTimeValues(){
        long curren = System.currentTimeMillis();
        long currenM = curren/1000/60;
        return currenM;
    }


}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值