Java Date Format ISO getIso8601DateFormat()

Here you can find the source of getIso8601DateFormat()

Description

get Iso Date Format

License

Open Source License

Declaration

public final static SimpleDateFormat getIso8601DateFormat() 

Method Source Code

//package com.java2s;
/*/*from   ww  w  .  j ava2 s  .com*/
 * Copyright (c) 2013-2015 Netcrest Technologies, LLC. 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.SimpleDateFormat;

public class Main {
    private final static SimpleDateFormat iso8601DateFormat = new SimpleDateFormat(
            "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");

    public final static SimpleDateFormat getIso8601DateFormat() {
        return iso8601DateFormat;
    }
}

Related

  1. getIso8601(final Date date)
  2. getISO8601Date(final Date date)
  3. getISO8601Date(long millis)
  4. getIso8601DateFormat()
  5. getIso8601DateFormat()
  6. getISO8601DateFormat()
  7. getIso8601DateFormat()
  8. getISO8601DateFormat(TimeZone tz, String mask)
  9. getISO8601DateString(Date d)