Java Date Format ISO isoDateTimeUTC(final Date val)

Here you can find the source of isoDateTimeUTC(final Date val)

Description

Turn Date into "yyyyMMddTHHmmssZ"

License

Apache License

Parameter

Parameter Description
val date

Return

String "yyyyMMddTHHmmssZ"

Declaration

public static String isoDateTimeUTC(final Date val) 

Method Source Code


//package com.java2s;
/* ********************************************************************
Licensed to Jasig under one or more contributor license
agreements. See the NOTICE file distributed with this work
for additional information regarding copyright ownership.
Jasig licenses this file to you 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:/*  ww w .  j a va  2  s.  co m*/
    
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 {
    private static final DateFormat isoDateTimeUTCFormat = new SimpleDateFormat("yyyyMMdd'T'HHmmss'Z'");

    /** Turn Date into "yyyyMMddTHHmmssZ"
     *
     * @param val date
     * @return String "yyyyMMddTHHmmssZ"
     */
    public static String isoDateTimeUTC(final Date val) {
        synchronized (isoDateTimeUTCFormat) {
            return isoDateTimeUTCFormat.format(val);
        }
    }
}

Related

  1. iso(Date date)
  2. iso8601(final Date date)
  3. iso8601Date(Date d)
  4. isoDateFormat(Calendar calendar)
  5. isoDateFormat(final Date date)
  6. isoFormat(Date date)
  7. isoTime(Date d)
  8. longToISODate(long longDate)
  9. makeDateISO8601(Date date)