时间格式化
package com.hss.projects.fully.api.utils; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; /** * 日期时间类 * Created by hssboy on 2016/10/15. */ public class DateUtil { public static Date getDate() { return new Date(); } /** * 时间戳(14123244334) * * @return */ public static String timeStamp() { return new Date().getTime() / 1000 + ""; }
用户评论