阅读背景:

短视频源代码简单获取时间戳的方式

来源:互联网 
/** * 获取时间戳 * @param * @return */ public static int getSecondTimestamp(){ SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");// HH:mm:ss //获取当前时间 Date date = new Date(System.currentTimeMillis()); String timestamp = String.valueOf(date.getTime()); int length = timestamp.length(); if (length > 3) { return Integer.valueOf(timestamp.substring(0,length-3)); } else { return 0; } } /** * 获取时间戳 * @param * @return */ public static i



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: