zoukankan      html  css  js  c++  java
  • 时间戳和字符串之间的互相转换

    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    
    public class TestTime {
    
    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;
    }
    
    // 将时间戳转为字符串
    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;
    
    }
    }
  • 相关阅读:
    进制转换
    01背包基础
    6-14 Inspector s Dilemma uva12118(欧拉道路)
    9-4 Unidirectional TSP uva116 (DP)
    8-4 奖品的价值 uva11491(贪心)
    9-1 A Spy in the Metro uva1025 城市里的间谍 (DP)
    8-3 Bits Equalizer uva12545
    8-2 Party Games uva1610 (贪心)
    自动发邮件功能
    窗口截图.py
  • 原文地址:https://www.cnblogs.com/androidsuperman/p/3490876.html
Copyright © 2011-2022 走看看