Java Date Format ISO toISO8601(Date pDate)

Here you can find the source of toISO8601(Date pDate)

Description

Convert a given date to an ISO-8601 compliant string representation for the default timezone

License

Apache License

Parameter

Parameter Description
pDate date to convert

Return

the ISO-8601 representation of the date

Declaration

public static String toISO8601(Date pDate) 

Method Source Code

//package com.java2s;
/*/*from  w  w  w.j a  va2s . c om*/
 * Copyright 2009-2013 Roland Huss
 *
 * 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.SimpleDateFormat;
import java.util.*;

public class Main {
    /**
     * Convert a given date to an ISO-8601 compliant string
     * representation for the default timezone
     *
     * @param pDate date to convert
     * @return the ISO-8601 representation of the date
     */
    public static String toISO8601(Date pDate) {
        return toISO8601(pDate, TimeZone.getDefault());
    }

    /**
     * Convert a given date to an ISO-8601 compliant string
     * representation for a given timezone
     *
     * @param pDate date to convert
     * @param pTimeZone timezone to use
     * @return the ISO-8601 representation of the date
     */
    public static String toISO8601(Date pDate, TimeZone pTimeZone) {
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ");
        dateFormat.setTimeZone(pTimeZone);
        String ret = dateFormat.format(pDate);
        ret = ret.replaceAll("\\+0000$", "Z");
        return ret.replaceAll("(\\d\\d)$", ":$1");
    }
}

Related

  1. toIso8601(Date date)
  2. toISO8601(Date date)
  3. toISO8601(Date date)
  4. toIso8601(Date dateObj)
  5. toIso8601(Date dateTime)
  6. toISO8601FileSystemCompatible(Calendar calendar)
  7. toISODate(String format, String value)
  8. toISODateRealTimeFormat(Date iDate)
  9. toISOString(Date date, String format, TimeZone tz)