All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.abubusoft.kripton.common.DateUtils Maven / Gradle / Ivy

There is a newer version: 8.2.0-rc.4
Show newest version
/*******************************************************************************
 * Copyright 2015, 2016 Francesco Benincasa.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *******************************************************************************/
package com.abubusoft.kripton.common;

import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import java.util.TimeZone;
 
/**
 * The Class DateUtils.
 */
public class DateUtils {

	/** The full. */
	public static String FULL = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'";

	/** The long. */
	public static String LONG = "yyyy-MM-dd HH:mm:ss z";

	/** The normal. */
	public static String NORMAL = "yyyy-MM-dd z";

	/** The short. */
	public static String SHORT = "yyyy-MM-dd";



	/**
	 * Read.
	 *
	 * @param value the value
	 * @return the date
	 */
	public static Date read(String value) {
		String pattern = getPattern(value);
		Date date=null;
		try {
			date = ThreadLocalDateFormatter.parse(value, pattern);
		} catch (ParseException e) {
			e.printStackTrace();
		}
		return date;
	}
	
	/**
	 * Write.
	 *
	 * @param value the value
	 * @return the string
	 */
	public static String write(Date value) {
		if (value==null) return null;
		String text = ThreadLocalDateFormatter.format(value, FULL);
		return text;
	}
	
	/**
	 * Write.
	 *
	 * @param value the value
	 * @return the string
	 */
	public static String writeShort(Date value) {
		if (value==null) return null;
		String text = ThreadLocalDateFormatter.format(value, SHORT);
		return text;
	}
	
	/**
	 * Gets the pattern.
	 *
	 * @param text the text
	 * @return the pattern
	 */
	static String getPattern(String text) {
		int length = text.length();

		if (length > 23) {
			return FULL;
		}
		if (length > 20) {
			return LONG;
		}
		if (length > 11) {
			return NORMAL;
		}
		return SHORT;
	}

	/**
	 * The Class ThreadLocalDateFormatter.
	 */
	public static class ThreadLocalDateFormatter {

		/** The Constant FORMATTERS. */
		private static final ThreadLocal> FORMATTERS = new ThreadLocal>() {
			protected Map initialValue() {
				return new HashMap();
			}
		};

		/**
		 * Gets the formatter.
		 *
		 * @param pattern the pattern
		 * @return the formatter
		 */
		static private final DateFormat getFormatter(final String pattern) {
			Map formatterMap = FORMATTERS.get();
			DateFormat df = formatterMap.get(pattern);
			if (null == df) {
				df = new SimpleDateFormat(pattern);
				TimeZone timeZoneGMT = TimeZone.getDefault();
				df.setTimeZone(timeZoneGMT);
				formatterMap.put(pattern, df);
			}
			return df;
		}

		/**
		 * static public and thread-safe method to parse a date from the given string.
		 *
		 * @param strDate            : input string to parse
		 * @param pattern            : date format pattern fo the input string
		 * @return Date value of the input string
		 * @throws ParseException             if parse exception happened
		 */
		static public Date parse(final String strDate, final String pattern) throws ParseException {
			return getFormatter(pattern).parse(strDate);
		}

		/**
		 * A thread-safe method to format a given Date based-on the given pattern.
		 *
		 * @param theDate            , Date to be formatted
		 * @param pattern            , pattern used to format the date
		 * @return String of formatted date
		 */
		static public String format(final Date theDate, final String pattern) {
			return getFormatter(pattern).format(theDate);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy