Android Date String Parse getDateFromString(String dateString)

Here you can find the source of getDateFromString(String dateString)

Description

get Date From String

License

Open Source License

Declaration

public static Date getDateFromString(String dateString)
        throws ParseException 

Method Source Code

//package com.java2s;
/**//  w  w  w .  j a va  2 s. co  m
 * Copyright (c) 2012 The Wiseserc. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

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

public class Main {

    public static Date getDateFromString(String dateString)
            throws ParseException {
        SimpleDateFormat sdf = new SimpleDateFormat(
                "yyyy-MM-dd'T'hh:mm:ss.S'Z'");
        return sdf.parse(dateString);
    }

    public static Date getDateFromString(String format, String dateString)
            throws ParseException {
        SimpleDateFormat sdf = new SimpleDateFormat(format);
        return sdf.parse(dateString);
    }
}

Related

  1. convertDateStringToLong(String date, String format)
  2. convertDateTime( String YearMonthDayHourMinuteSeconds)
  3. convertToDate(String dateString)
  4. getDateFromString(String format, String dateString)
  5. getDateFromLJString( String dateString)
  6. parseRFC3339Date(String date)
  7. parseRFC822Date(String date)
  8. parseIcalDateToString(Date date, TimeZone tz)
  9. parseDate(String s)