Android Time Format getDateFromFormattedTimeStamp( String formattedTimeStamp)

Here you can find the source of getDateFromFormattedTimeStamp( String formattedTimeStamp)

Description

get Date From Formatted Time Stamp

License

Open Source License

Declaration

public static Date getDateFromFormattedTimeStamp(
            String formattedTimeStamp) throws ParseException 

Method Source Code

//package com.java2s;
/*/*  w ww.  j a  v a2s .  co  m*/

 The Martus(tm) free, social justice documentation and
 monitoring software. Copyright (C) 2002-2007, Beneficent
 Technology, Inc. (The Benetech Initiative).

 Martus 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 2 of the License, or (at your option) any later
 version with the additions and exceptions described in the
 accompanying Martus license file entitled "license.txt".

 It is distributed WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, including warranties of fitness of purpose or
 merchantability.  See the accompanying Martus License and
 GPL license for more details on the required license terms
 for this software.

 You should have received a copy of the GNU General Public
 License along with this program; if not, write to the Free
 Software Foundation, Inc., 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.

 */

import java.text.ParseException;
import java.text.SimpleDateFormat;

import java.util.Date;

public class Main {
    private static final String MARTUS_SIGNATURE_FILE_DATE_FORMAT = "yyyyMMdd-HHmmss";

    public static Date getDateFromFormattedTimeStamp(
            String formattedTimeStamp) throws ParseException {
        SimpleDateFormat date = new SimpleDateFormat(
                MARTUS_SIGNATURE_FILE_DATE_FORMAT);
        return date.parse(formattedTimeStamp);
    }
}

Related

  1. dateTimeFormat(String dateTime)
  2. formatDateTime(String date, String format)
  3. formatTime(long time)
  4. convertDateTime(String date, String format)
  5. convertDateTime(long date, String format)
  6. getFormattedTimeStamp(long millisSince1970)
  7. getRFC3339FormattedTime()
  8. get_current_date_time_format1_str()
  9. timeFormatToString(int paramInt)