Java Date Format ISO toBasicISO8601DateTime(Date value)

Here you can find the source of toBasicISO8601DateTime(Date value)

Description

to Basic ISO Date Time

License

Open Source License

Declaration

public static String toBasicISO8601DateTime(Date value) 

Method Source Code

//package com.java2s;
/**/*ww  w  . j a  va  2 s  .c  om*/
 * Copyright 2004-2014 Riccardo Solmi. All rights reserved.
 * This file is part of the Whole Platform.
 *
 * The Whole Platform is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * The Whole Platform is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with the Whole Platform. If not, see <http://www.gnu.org/licenses/>.
 */

import java.text.DateFormat;

import java.text.SimpleDateFormat;

import java.util.Date;

public class Main {
    public static DateFormat basicISO8601DateTimeFormatter = new SimpleDateFormat("yyyyMMdd'T'HHmm'Z'");

    public static String toBasicISO8601DateTime(Date value) {
        synchronized (basicISO8601DateTimeFormatter) {
            return basicISO8601DateTimeFormatter.format(value);
        }
    }
}

Related

  1. NowFormatISO()
  2. nowISO8601()
  3. parseISODateFormat(String dateStr)
  4. parseIsoDateTime(final String isoDateString, final String dateFormat)
  5. timeToIso8601(long time, boolean includeTime)
  6. toDateIso(Date date)
  7. toISO2616DateFormat(Date date)
  8. toIso8601(@Nullable Calendar calendar)
  9. toISO8601(Date date)