时间格式化

时间:2021-08-28 11:57:17
【文件属性】:

文件名称:时间格式化

文件大小:2KB

文件格式:JAVA

更新时间:2021-08-28 11:57:17

java date

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 + ""; }


网友评论