• 时间戳和字符串转换


    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Date;

    public class test {
     public static void main(String[] args) {
      String time = "2010年12月08日11时17分00秒";
      System.out.println(time); // 字符串=======>时间戳
      String re_str =getTime(time);
      System.out.println(re_str);  //时间戳======>字符串
      String data =getStrTime(re_str);
      System.out.println(data);
     }
     // 将字符串转为时间戳
      public static String getTime(String user_time) {
       String re_time = null;
       SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日HH时mm分ss秒");
       Date d;
       try {
        d = sdf.parse(user_time);
        long l = d.getTime();
        String str = String.valueOf(l);
        re_time =str.substring(0, 10);
        } catch(ParseException e) {
         // TODO Auto-generated catch block
         e.printStackTrace();
        }
        return re_time;
       }
      
      // 将10位时间戳转为字符串
      public static String getStrTime(String cc_time) {
       String re_StrTime = null;
       SimpleDateFormat sdf =new SimpleDateFormat("yyyy年MM月dd日HH时mm分ss秒");
       // 例如:cc_time=1291778220
       long lcc_time =Long.valueOf(cc_time);
       re_StrTime =sdf.format(new Date(lcc_time * 1000L));
       return re_StrTime;
     }
    }

    如果是13位呢?   lcc_time 不用 *1000L ?

  • 相关阅读:
    人心散了、项目必然要败(转自CSDN)
    sql server加锁机制
    数据库事物隔离级别
    aop学习
    数据库加锁(转)
    托管代码和非托管代码效率的对比。
    day05 Linux文本处理命令
    day04 CentOS 异常,问题解决方法
    day02 Linux系统介绍与安装
    linux常用命令的英文单词缩写
  • 原文地址:https://www.cnblogs.com/myfrank/p/8651065.html
Copyright © 2020-2023  润新知