Java String to Date toDate(String value)

Here you can find the source of toDate(String value)

Description

Gets the date value of the input string value.

License

Open Source License

Parameter

Parameter Description
value the string value

Return

a date value of the input string value.

Declaration

public static Date toDate(String value) 

Method Source Code

//package com.java2s;
/**/*w w  w. ja v a 2s . co  m*/
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
    
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
    
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
**/

import java.text.SimpleDateFormat;

import java.util.Date;

public class Main {
    /**
     * The ISO date format string.
     */
    private static String isoDateStringFormat = "yyyy-MM-dd'T'HH:mm:ss'Z'";

    /**
     * Gets the date value of the input string value.
     * 
     * @param value
     *            the string value
     * @return a date value of the input string value.
     */
    public static Date toDate(String value) {
        try {
            if (value != null) {
                SimpleDateFormat df = new SimpleDateFormat(isoDateStringFormat);
                return df.parse(value);
            }
        } catch (Exception ex) {
        }
        return null;
    }
}

Related

  1. toDate(String string)
  2. toDate(String string, String format)
  3. toDate(String time)
  4. toDate(String time)
  5. toDate(String ts)
  6. toDateByFormat(String dateString, String formatStr)
  7. toDateByPattern(String dateTime)
  8. toDateFormat(Integer grain, TimeZone timeZone, String dateFormatArg)
  9. toDateFormat(String date)