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

com.shopizer.search.utils.DateUtil Maven / Gradle / Ivy

There is a newer version: 2.11.2
Show newest version
package com.shopizer.search.utils;

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;

public class DateUtil {

  public final static String DATE_FORMAT = "yyyy-MM-dd";

  public static Date formatDate(String date) throws Exception {

    DateFormat myDateFormat = new SimpleDateFormat(DATE_FORMAT);
    return myDateFormat.parse(date);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy