Java Date ISO Parse parseFromIso8601(String s)

Here you can find the source of parseFromIso8601(String s)

Description

Parses a string in ISO8601 format to a Date object

License

Apache License

Parameter

Parameter Description
s the string to parse

Return

the parsed

Declaration

public static Date parseFromIso8601(String s) 

Method Source Code


//package com.java2s;
/*/*from   www  .  j a  va  2 s. c om*/
 * Copyright 2013-2016 the original author or authors.
 *
 * 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.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {
    private static final SimpleDateFormat ISO8601 = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssX");
    private static final Object MONITOR = new Object();

    /**
     * Parses a string in {@code ISO8601} format to a {@link Date} object
     *
     * @param s the string to parse
     * @return the parsed {@link Date}
     */
    public static Date parseFromIso8601(String s) {
        synchronized (MONITOR) {
            try {
                return ISO8601.parse(s);
            } catch (ParseException e) {
                throw new IllegalArgumentException("Unable to parse date", e);
            }
        }
    }
}

Related

  1. parseDate(String iso8061StrDateTime)
  2. parseDateISO(String date)
  3. parseDateISO(String value)
  4. parseDateISO(String value)
  5. parseDateTime(String iso8061StrDateTime)
  6. parseISO(String aIsoString)
  7. parseISO(String input)
  8. parseISO(String strValue)
  9. parseIso8601(String iso8601String)