日期格式转换

日期格式转换 

 在java或js中 我们常常会进行日期格式的转换

 然而每次都去写很麻烦 所以在这里 我整理了一个dateformat的工具类

希望对大家有用!大笑

package com.***.utils.dateutil;

import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Locale;




/**
 * ClassName:DateFormats <p>
 * Description:时间格式规范工具<p>
 * Company:<p>
 * @author ***
 * @date Jan 19, 2018 12:43:06 PM
 */
public class DateFormats {

	private final static SimpleDateFormat sdfYear = new SimpleDateFormat("yyyy");
	private final static SimpleDateFormat sdfDay = new SimpleDateFormat("yyyy-MM-dd");
	private final static SimpleDateFormat sdfDays = new SimpleDateFormat("yyyyMMdd");
	private final static SimpleDateFormat sdfTimeTillSecond = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
	private final static SimpleDateFormat sdfTimeTillMinute = new SimpleDateFormat("yyyy-MM-dd HH:mm");
	private final static SimpleDateFormat sdfTime14 = new SimpleDateFormat("yyyyMMddHHmmss");
	private final static SimpleDateFormat sdfTime17 = new SimpleDateFormat("yyyyMMddhhmmssSSS");
	private final static SimpleDateFormat sdfencn = new SimpleDateFormat("MMM d, yyyy H:m:s a",Locale.ENGLISH);
	/**
	 * 获取YYYY格式
	 * 
	 * @return
	 */
	public static String getSdfTimesTillSecond() {
		return sdfTime14.format(new Date());
	}
	
	/**
	 * 如Jan 19, 2018 12:33:57 PM
	 * @return
	 */
	public static String getsdfencn(){
		return sdfencn.format(new Date());
		
	}
	
	/**
	 * 生成海关使用的17位时间字符串
	 * @return
	 */
	public static String getSdfTime17() {
		return sdfTime17.format(new Date());
	}

	
	/**
	 * 得到当前年和月,比如1609,表示2016年9月
	 * @return
	 */
	public static int getYYMM() {
		Calendar cl = Calendar.getInstance();
		return cl.get(Calendar.YEAR) % 100 * 100 + (cl.get(Calendar.MONTH) + 1);
	}

	/**
	 * 获取YYYY格式
	 * 
	 * @return
	 */
	public static String getYear() {
		return sdfYear.format(new Date());
	}

	/**
	 * 获取YYYY-MM-DD格式
	 * 
	 * @return
	 */
	public static String getDay() {
		return sdfDay.format(new Date());
	}

	/**
	 * 获取YYYYMMDD格式
	 * 
	 * @return
	 */
	public static String getDays() {
		return sdfDays.format(new Date());
	}

	/**
	 * 获取YYYY-MM-DD HH:mm:ss格式
	 * 
	 * @return
	 */
	public static String getTimeTillSecond() {
		return sdfTimeTillSecond.format(new Date());
	}

	/**
	 * 获取YYYY-MM-DD HH:mm格式
	 * 
	 * @return
	 */
	public static String getTimeTillMinute() {
		return sdfTimeTillMinute.format(new Date());
	}

	/**
	 * @Title: compareDate
	 * @Description: TODO(日期比较,如果s>=e 返回true 否则返回false)
	 * @param s
	 * @param e
	 * @return boolean
	 * @throws @author
	 *             fh
	 */
	public static boolean compareDate(String s, String e) {
		if (formatDate(s) == null || formatDate(e) == null) {
			return false;
		}
		return formatDate(s).getTime() >= formatDate(e).getTime();
	}

	/**
	 * @Title:formatDate
	 * @Description:格式化日期
	 * @param date
	 * @return
	 * @throws
	 * @return Date
	 * @author yangchuanjie
	 * @date Jan 19, 2018 2:17:20 PM
	 */
	public static Date formatDate(String date) {
		DateFormat fmt = new SimpleDateFormat("yyyyMMddHH:mm:ss");
		try {
			return fmt.parse(date);
		} catch (ParseException e) {
			e.printStackTrace();
			return null;
		}
	}

	/**
	 * 校验日期是否合法
	 * 
	 * @return
	 */
	public static boolean isValidDate(String s) {
		DateFormat fmt = new SimpleDateFormat("yyyy-MM-dd");
		try {
			fmt.parse(s);
			return true;
		} catch (Exception e) {
			// 如果throw java.text.ParseException或者NullPointerException,就说明格式不对
			return false;
		}
	}

	/**
	 * @param startTime
	 * @param endTime
	 * @return
	 */
	public static int getDiffYear(String startTime, String endTime) {
		DateFormat fmt = new SimpleDateFormat("yyyy-MM-dd");
		try {
			// long aa=0;
			int years = (int) (((fmt.parse(endTime).getTime() - fmt.parse(startTime).getTime()) / (1000 * 60 * 60 * 24))
					/ 365);
			return years;
		} catch (Exception e) {
			// 如果throw java.text.ParseException或者NullPointerException,就说明格式不对
			return 0;
		}
	}

	/**
	 * <li>功能描述:时间相减得到天数
	 * 
	 * @param beginDateStr
	 * @param endDateStr
	 * @return long
	 * @author Administrator
	 */
	public static long getDaySub(String beginDateStr, String endDateStr) {
		long day = 0;
		SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
		Date beginDate = null;
		Date endDate = null;

		try {
			beginDate = format.parse(beginDateStr);
			endDate = format.parse(endDateStr);
		} catch (ParseException e) {
			e.printStackTrace();
		}
		day = (endDate.getTime() - beginDate.getTime()) / (24 * 60 * 60 * 1000);
		// System.out.println("相隔的天数="+day);

		return day;
	}

	/**
	 * 得到n天之后的日期
	 * 
	 * @param days
	 * @return
	 */
	public static String getAfterDayDate(String days) {
		int daysInt = Integer.parseInt(days);

		Calendar canlendar = Calendar.getInstance(); // java.util包
		canlendar.add(Calendar.DATE, daysInt); // 日期减 如果不够减会将月变动
		Date date = canlendar.getTime();

		SimpleDateFormat sdfd = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		String dateStr = sdfd.format(date);

		return dateStr;
	}

	/**
	 * 得到n天之后的日期--扩展
	 * 
	 * @param days
	 * @return
	 */
	public static String getAfterDayDateEx(String days) {
		int daysInt = Integer.parseInt(days);

		Calendar canlendar = Calendar.getInstance(); // java.util包
		canlendar.add(Calendar.DATE, daysInt); // 日期减 如果不够减会将月变动
		Date date = canlendar.getTime();

		SimpleDateFormat sdfd = new SimpleDateFormat("yyyy-MM-dd");
		String dateStr = sdfd.format(date);

		return dateStr;
	}

	/**
	 * 得到n天之后是周几
	 * 
	 * @param days
	 * @return
	 */
	public static String getAfterDayWeek(String days) {
		int daysInt = Integer.parseInt(days);
		Calendar canlendar = Calendar.getInstance(); // java.util包
		canlendar.add(Calendar.DATE, daysInt); // 日期减 如果不够减会将月变动
		Date date = canlendar.getTime();
		SimpleDateFormat sdf = new SimpleDateFormat("E");
		String dateStr = sdf.format(date);
		return dateStr;
	}
}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值