Java String to Date stringToDate(String text)

Here you can find the source of stringToDate(String text)

Description

string To Date

License

Open Source License

Declaration

public static Date stringToDate(String text) 

Method Source Code

//package com.java2s;
/*//from  www  . j ava  2s  . c  om
 * #%L
 * Timbuctoo tools
 * =======
 * Copyright (C) 2012 - 2015 Huygens ING
 * =======
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, either version 3 of the 
 * License, or (at your option) any later version.
 * 
 * This program 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 General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public 
 * License along with this program.  If not, see
 * <http://www.gnu.org/licenses/gpl-3.0.html>.
 * #L%
 */

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;

public class Main {
    public static final String ISO_FORMAT = "yyyy-MM-dd'T'HH:mm:ss'Z'";
    private static final TimeZone UTC = TimeZone.getTimeZone("UTC");

    public static Date stringToDate(String text) {
        try {
            SimpleDateFormat format = new SimpleDateFormat(ISO_FORMAT);
            format.setTimeZone(UTC);
            return format.parse(text);
        } catch (ParseException e) {
            return null;
        }
    }
}

Related

  1. stringToDate(String strDate, String oracleFormat)
  2. stringToDate(String strDate, String pattern)
  3. stringToDate(String strDate, String strFormat)
  4. stringToDate(String string)
  5. stringToDate(String string, String format)
  6. StringToDate(String thisdate, Locale locale)
  7. stringToDate(String time, String format)
  8. stringToDate(String vStr, String vPatten)
  9. StringToDate1(String strDate)