Java Date Format ISO fromIso8601(String iso)

Here you can find the source of fromIso8601(String iso)

Description

Converts an ISO 8601 string to a date.

License

Apache License

Parameter

Parameter Description
iso the date

Return

the data

Declaration

public static Date fromIso8601(String iso) 

Method Source Code

//package com.java2s;
/* See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * Esri Inc. 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
 *
 *     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.//from   w  w  w  . jav  a2 s .  c  o  m
 */

import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;

import java.util.TimeZone;
import javax.xml.bind.DatatypeConverter;

public class Main {
    /**
     * Converts an ISO 8601 string to a date.
     * @param iso the date
     * @return the data
     */
    public static Date fromIso8601(String iso) {
        if (iso == null)
            return null;
        Calendar c1 = DatatypeConverter.parseDateTime(iso);
        GregorianCalendar c = new GregorianCalendar(TimeZone.getTimeZone("UTC"));
        c.setTimeInMillis(c1.getTimeInMillis());
        return new Date(c.getTimeInMillis());
    }
}

Related

  1. formatTimestampIso8601(long millis, TimeZone zone)
  2. formatToIso8601(Date d)
  3. formatToISO8601(Date date)
  4. formatWikiISO8601(Date d)
  5. fromIso8601(@Nullable String date)
  6. get_ISO_8601()
  7. getDateAsISOString(Date date)
  8. getFormattedMillisolString(double s)
  9. getIso8601(final Date date)