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

org.codehaus.plexus.mailsender.util.DateFormatUtils Maven / Gradle / Ivy

The newest version!
package org.codehaus.plexus.mailsender.util;

/*
 * LICENSE
 */

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

/**
 * @author Trygve Laugstøl
 * @version $Id: DateFormatUtils.java 2338 2005-07-19 10:17:07Z evenisse $
 */
public class DateFormatUtils
{
    private static SimpleDateFormat formatter = new SimpleDateFormat( "EEE, dd MMM yy HH:mm:ss Z", Locale.ENGLISH );

    public static synchronized String getDateHeader( Date date )
    {
        return formatter.format( date );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy