• 时间转换


    时间转换

    摘抄的博客:https://www.cnblogs.com/mstk/p/5511057.html

    1.获取时间戳
    String stamp =  String.valueOf(System.currentTimeMillis());
    
    2.时间字符串转时间戳
    /* 
     * 将时间转换为时间戳
     * s: 时间字符串
     * type: "yyyy-MM-dd",时间的类型
     */    
     public String dateToStamp(String s,String type) {
         SimpleDateFormat simpleDateFormat = new SimpleDateFormat(type, Locale.CHINA);
         Date date = null;
         try {
             date = simpleDateFormat.parse(s);
             long ts = date.getTime(
             return String.valueOf(ts));
         } catch (ParseException e) {
              e.printStackTrace();
         }
         return null;
    }
    
    3.时间戳转时间字符串
    /* 
     * 将时间戳转换为时间
     */
    public static String stampToDate(String s){
        String res;
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        long lt = new Long(s);
        Date date = new Date(lt);
        res = simpleDateFormat.format(date);
        return res;
    }
    

    前段时间还看过博客,似乎 yyyy-MM-dd 里面有一个冷僻的坑,就是YYYY和小yyyy的不同,YYYY是当前周所属的年份。如果当前是2019-12-31,使用YYYY就会变成2010-12-31了。似乎,逆向的话也有问题。

  • 相关阅读:
    java
    JAVA的String 类
    JAVA的StringBuffer类
    TestLink 的使用详解
    Vertrigo Serv + testlink 环境搭建
    自动化测试全聚合
    selenium -文件上传的实现 -对于含有input element的上传
    chrome启动参数设置
    selenium
    java
  • 原文地址:https://www.cnblogs.com/wisdomzhang/p/12221493.html
Copyright © 2020-2023  润新知