DateUtils.java
738 Bytes
package com.xiniunet.web.util;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
* <p/>
* <pre>
* ***************************************************************
* Copyright (c) 2014-2015 –苏州犀牛网络科技有限公司
* Package: com.xiniunet.erp.util
* Description:
* @since 1.0.0
* @author 赵天恩
* @date 2015/12/21
* @time 18:36
* ***************************************************************
* </pre>
*/
public class DateUtils {
public static Integer getDateId() {
Date date = new Date();
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyyMMdd");
String dateStr = simpleDateFormat.format(date);
return Integer.parseInt(dateStr);
}
}