Top "Simpledateformat" questions

SimpleDateFormat is a concrete Java class for formatting and parsing dates and times in a locale-sensitive manner.

Using GregorianCalendar with SimpleDateFormat

So, I've been racking my brain over this (should-be) simple exercise to make the program turn a date string into …

java simpledateformat illegalargumentexception gregorian-calendar
How to parse dates in multiple formats using SimpleDateFormat

I am trying to parse some dates that are coming out of a document. It would appear users have entered …

java parsing datetime simpledateformat
How can I utilize SimpleDateFormat with Calendar?

I've got GregorianCalendar instances and need to use SimpleDateFormat (or maybe something that can be used with calendar but that …

java date calendar formatting simpledateformat
Java Date Formatter

I am getting date format as "YYYY-mm-dd hh:mm" as formatter object. How can I format the input formatter object …

java simpledateformat
Get value of day month from Date object in Android?

By using this code : SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date date = format.parse(dtStart); return date; I …

java android date simpledateformat
java.text.ParseException: Unparseable date "yyyy-MM-dd'T'HH:mm:ss.SSSZ" - SimpleDateFormat

I would appreciate any help with finding bug for this exception: java.text.ParseException: Unparseable date: "2007-09-25T15:40:51.0000000Z" …

java parsing exception datetime simpledateformat
How to Parse Date from GMT TimeZone to IST TimeZone and Vice Versa in android

I am working on a project that fetches Date/Time from backend in IST(Indian standard Time) as shown "2013-01…

java android date timezone simpledateformat
Date format parse exception - "EEE MMM dd HH:mm:ss Z yyyy"

I got problem with date parse example date: SimpleDateFormat parserSDF=new SimpleDateFormat("EEE MMM dd HH:mm:ss zzzz yyyy", …

java date simpledateformat
Convert String Date to String date different format

I am new to Java. Postgres db contain date format is yyyy-MM-dd. I need to convert to dd-MM-yyyy. I have …

java simpledateformat date-conversion
Convert Json timestamp to normal date and time in javascript

I have a Json timestamp that I would like to convert into simple date time format using javascript. I need …

javascript json datetime timestamp simpledateformat