Here you can find the source of toISO8601(Date pDate)
Parameter | Description |
---|---|
pDate | date to convert |
public static String toISO8601(Date pDate)
//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"); } }