Java Hour Format formatXEP0082Date(Date date)

Here you can find the source of formatXEP0082Date(Date date)

Description

Formats a Date into a XEP-0082 - XMPP Date and Time Profiles string.

License

Open Source License

Parameter

Parameter Description
date the time value to be formatted into a time string

Return

the formatted time string in XEP-0082 format

Declaration

public static String formatXEP0082Date(Date date) 

Method Source Code

//package com.java2s;
/**/*from  ww w  . ja  v a  2 s  . c om*/
 * $RCSfile$
 * $Revision: 11823 $
 * $Date: 2010-08-15 08:20:48 -0500 (Sun, 15 Aug 2010) $
 *
 * Copyright 2003-2007 Jive Software.
 *
 * All rights reserved. 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.
 */

import java.text.DateFormat;

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

public class Main {
    /**
     * Date format as defined in XEP-0082 - XMPP Date and Time Profiles. The time zone is set to
     * UTC.
     * <p>
     * Date formats are not synchronized. Since multiple threads access the format concurrently, it
     * must be synchronized externally or you can use the convenience methods
     * {@link #parseXEP0082Date(String)} and {@link #formatXEP0082Date(Date)}.
     */
    public static final DateFormat XEP_0082_UTC_FORMAT = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");

    /**
     * Formats a Date into a XEP-0082 - XMPP Date and Time Profiles string.
     * 
     * @param date the time value to be formatted into a time string
     * @return the formatted time string in XEP-0082 format
     */
    public static String formatXEP0082Date(Date date) {
        synchronized (XEP_0082_UTC_FORMAT) {
            return XEP_0082_UTC_FORMAT.format(date);
        }
    }
}

Related

  1. formatW3CDateTime(Date date)
  2. formatW3CDateTime(Date date)
  3. formatWCPDate(String date, String sFormat)
  4. formatWithAge(Date date, String dateFormat, String suffix)
  5. formatWithSql92Date(Date date)
  6. formatXsdDate (final Date date)
  7. formatXsdDateTime(Date d)
  8. getFormattedHoursByMinutes(int minutes)
  9. getHHmm()