Android 各种时间格式转化和获取时间戳

来源:互联网 发布:九州娱乐软件下载 编辑:程序博客网 时间:2024/06/16 17:25
public class TimeUtils {    //十位时间戳字符串转小时分钟秒    public static String Hourmin(String time) {        SimpleDateFormat sdr = new SimpleDateFormat("HH:mm:ss");        @SuppressWarnings("unused")        long lcc = Long.valueOf(time);        int i = Integer.parseInt(time);        String times = sdr.format(new Date(i * 1000L));        return times;    }    //十位时间戳字符串转年月    public static String YearMon(String time) {        SimpleDateFormat sdr = new SimpleDateFormat("yyyy年MM月");        @SuppressWarnings("unused")        long lcc = Long.valueOf(time);        int i = Integer.parseInt(time);        String times = sdr.format(new Date(i * 1000L));        return times;    }    //十位时间戳字符串转月日    public static String MonthDay(String time) {        SimpleDateFormat sdr = new SimpleDateFormat("MM月dd日");        @SuppressWarnings("unused")        long lcc = Long.valueOf(time);        int i = Integer.parseInt(time);        String times = sdr.format(new Date(i * 1000L));        return times;    }    //获取13位字符串格式的时间戳    public static String getTime13() {        long time = System.currentTimeMillis();        String str13 = String.valueOf(time);        return str13;    }    //获取10位字符串格式的时间戳    public static String getTime() {        long time = System.currentTimeMillis() / 1000;//获取系统时间的10位的时间戳        String str = String.valueOf(time);        return str;    }     public static String YMDHMS(String time){         SimpleDateFormat sdr = new SimpleDateFormat("yyyy年MM月dd日HH:mm:ss");         @SuppressWarnings("unused")         long lcc = Long.valueOf(time);         int i = Integer.parseInt(time);         String times = sdr.format(new Date(i * 1000L));         return times;     } }
原创粉丝点击