时间戳与日期格式转换

        今天在开发中获取微信端返回来的用户数据的时候发生了时间转换错误,后来发现了原来微信端是返回的Unix下时间戳,在此记录一下处理时间戳的方法:

/**

    * Convert [Unix] timestamp to normal date style

     * 把毫秒转化成日期

     * @param dateFormat(日期格式,例如:MM/ dd/yyyy HH:mm:ss)

     * @param millSec(毫秒数)

     * @return

     */

public static String timeStamp2Date(String dateFormat,String timestampString){  

 Long timestamp = Long.parseLong(timestampString) * 1000;  

 String date = new java.text.SimpleDateFormat(dateFormat).format(new Date(timestamp));  

 return date;  


你可能感兴趣的:(时间戳与日期格式转换)