Java Parse Date parseDate(String s)

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

Description

parse Date

License

Apache License

Declaration

public static Date parseDate(String s) 

Method Source Code


//package com.java2s;
/* 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
 * //w ww. j av a 2  s  . c o m
 *      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.ParsePosition;
import java.util.Date;

import com.fasterxml.jackson.databind.util.ISO8601Utils;

public class Main {
    public static Date parseDate(String s) {
        if (s != null) {
            try {
                return ISO8601Utils.parse(s, new ParsePosition(0));
            } catch (ParseException e) {
                return null;
            }
        }
        return null;
    }
}

Related

  1. parseDate(String s)
  2. parseDate(String s)
  3. parseDate(String s)
  4. parseDate(String s)
  5. parseDate(String s)
  6. parseDate(String s)
  7. parseDate(String s)
  8. parseDate(String s)
  9. parsedate(String s, SimpleDateFormat fmt)