Java Timestamp Parse parseTimestamp(String s)

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

Description

parse Timestamp

License

Open Source License

Declaration

public static Date parseTimestamp(String s) throws ParseException 

Method Source Code

//package com.java2s;
/*/*from ww w . j a v a2  s. c  om*/
 * jPOS Project [http://jpos.org]
 * Copyright (C) 2000-2012 Alejandro P. Revilla
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.util.Date;

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

public class Main {
    static SimpleDateFormat dfDateTime_mmddyyyy = new SimpleDateFormat(
            "MM/dd/yyyy HH:mm:ss");

    public static Date parseTimestamp(String s) throws ParseException {
        if (s == null)
            return null;
        return dfDateTime_mmddyyyy.parse(s);
    }
}

Related

  1. parseTimestamp(String date)
  2. parseTimestamp(String dateStr, String format)
  3. parseTimestamp(String dateString)
  4. parseTimestamp(String pattern, String dateTime)
  5. parseTimestamp(String s)
  6. parseTimestamp(String sDate, String sFormat)
  7. parseTimestamp(String src, String pattern)
  8. parseTimestamp(String strDate)
  9. parseTimestamp(String time)