Java Date ISO Parse parseIsoDateTime(String isoDateTime)

Here you can find the source of parseIsoDateTime(String isoDateTime)

Description

parse Iso Date Time

License

Open Source License

Declaration

public static Date parseIsoDateTime(String isoDateTime) throws Exception 

Method Source Code


//package com.java2s;
/*//from w  ww  .jav a  2s.  c o m
    
The Martus(tm) free, social justice documentation and
monitoring software. Copyright (C) 2001-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.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;

import java.util.TimeZone;

public class Main {
    public static Date parseIsoDateTime(String isoDateTime) throws Exception {
        if (isoDateTime.length() == 0)
            return new Date(0L);

        DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");
        df.setTimeZone(TimeZone.getTimeZone("UTC"));
        Date date = df.parse(isoDateTime);
        return date;
    }
}

Related

  1. parseISODate(String date)
  2. parseIsoDate(String str)
  3. parseIsoDate2(String s)
  4. parseIsoDateAndTimeString(String aDateString, String aTimeString)
  5. parseIsoDateInput(String str)
  6. parseISODuration(String duration)
  7. parseIsoString(String time)
  8. parseTimestampIso8601(String timestamp)
  9. strongCheckIso8601Date(String date)