Tagged Questions

SimpleDateFormat is a concrete class for formatting and parsing dates in a locale-sensitive manner. It allows for formatting (date -> text), parsing (text -> date), and normalization.

learn more… | top users | synonyms

10
votes
6answers
1k views

How do you format the day of the month to say “11th”, “21st” or “23rd” in Java?

I know this will give me the day of the month as a number (11, 21, 23): SimpleDateFormat formatDayOfMonth = new SimpleDateFormat("d"); But how do you format the day of the month to say 11th, 21st ...
8
votes
4answers
192 views

Weird behavior in java.text.SimpleDateFormat

I have encountered a very weird behavior while using SimpleDateFormat for parsing a string to a date. Consider the following unit test: @Test public void testParse() throws ParseException { ...
7
votes
6answers
102 views

SimpleDateFormat parse(string str) didn't been throw when str = 2011/12/12aaaaaaaaa?

Here is an example: public MyDate() throws ParseException { SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/d"); sdf.setLenient(false); String t1 = "2011/12/12aaa"; ...
7
votes
2answers
2k views

how to parse a Date string to java.Date

I have a date string and I wang to parse it to normal date use the java Date API,the following is my code: public static void main(String[] args) { String date="2010-10-02T12:23:23Z"; ...
7
votes
3answers
3k views

simpledateformat parsing date with 'Z' literal

I am trying to parse a date that looks like this: 2010-04-05T17:16:00Z This is a valid date per http://www.ietf.org/rfc/rfc3339.txt. The 'Z' literal "imply that UTC is the preferred reference ...
6
votes
9answers
512 views

Deprecated Date methods in Java?

What is really meant when using Java Date utilities and something has been deprecated. Does this mean that it is discouraged to use, or does it imply that it is forbidden? I am guessing it is bad ...
5
votes
5answers
2k views

Strange date and time parsing problem with SimpleDateFormat

I have a strange problem when parsing a ISO8601 date and time with SimpleDateFormat. The relevant code is: public class DateHelper { private static SimpleDateFormat iso8601formatter = new ...
5
votes
2answers
231 views

Is there another way to retrieve default pattern for a given locale?

Is it possible to retrieve a default pattern for a given locale, without casting an object returned by DateFormat.get*Instance() to a SimpleDateFormat? I understand, that in most cases everything ...
5
votes
3answers
2k views

Why am I getting a ParseException when using SimpleDateFormat to format a date and then parse it?

I have been debugging some existing code for which unit tests are failing on my system, but not on colleagues' systems. The root cause is that SimpleDateFormat is throwing ParseExceptions when parsing ...
4
votes
4answers
187 views

SimpleDateFormat Week Calculations

I'm getting some puzzling results with SimpleDateFormat and am hoping that someone can shed some light on the issue. The output: Time = Mon Dec 27 00:00:00 PST 2010 2010-01 <--- THIS IS ...
4
votes
2answers
155 views

Convert GMT DateTime String

I am pretty new to Java and I am a little stuck with using SimpleDateFormat and Calendar. I have a Date-Object and want to extract a GMT datestring like yyyy-MM-dd HH:mm:ss. I live in Germany and at ...
4
votes
6answers
5k views

Why parsing '23:00 PM' with SimpleDateFormat(“hh:mm aa”) returns 11 a.m.?

Finally I managed to understand what the problem was. I should hold on my string 11 PM instead of 23 PM What I don't understand is why parsing '23:00 PM' with SimpleDateFormat("hh:mm aa") returns ...
3
votes
4answers
56 views

Problems using SimpleDateFormat

Apparently, I'm missing something fundamental. I'm having a problem with formatting the value of a jspinner. I've tried a couple different ways and keep receiving an error, didn't keep track of them, ...
3
votes
2answers
67 views

What is this date format? 2011-08-12T20:17:46.384Z

I have the following date: 2011-08-12T20:17:46.384Z. What format is this? I'm trying to parse it with Java 1.4 via DateFormat.getDateInstance().parse(dateStr) and I'm getting ...
3
votes
4answers
146 views

SimpleDateFormat without the Timezone Offset in Java (GMT+00:00) for Custom Timezone

Is it possible to format a date time in Java using the SimpleDateFormat class to give the timezone part of a date without having the +0000 after it. Edit We are changing the Default Timezone ...
3
votes
1answer
164 views

SimpleDateFormat 24h

I've got a SimpleDateFormat to parse a String into a Date: SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'hh:mm:ssZ"); When I'm parsing this: ...
3
votes
6answers
348 views

How to format an elapsed time interval in hh:mm:ss.SSS format in Java?

I'm making a stop watch where I'm using Java's SimpleDateFormat to convert the number of milliseconds into a nice "hh:mm:ss:SSS" format. The problem is the hours field always has some random number in ...
3
votes
2answers
107 views

Need help with validating a date

I have the code below and it works pretty good except if you enter something like 2/2/2011, you get the error message "The Document Date is not a valid date". I would expect that it would say "The ...
3
votes
2answers
569 views

Java - Unparseable date

I am trying to parse a date, but I am oddly getting an exception. This is the code: import java.util.Date; String strDate = "Wed, 09 Feb 2011 12:34:27"; Date date; SimpleDateFormat FORMATTER = ...
3
votes
1answer
181 views

SimpleDateFormat giving wrong date instead of error

I am using following pattern and date Date : 13-13-2007 Pattern : dd-MM-yyyy Output: Sun Jan 13 00:00:00 IST 2008 Or 2008-01-13 00:00:00.0 I was expecting exception here. What can i do to generate ...
3
votes
1answer
399 views

Regex for Java SimpleDateFormat pattern (could be specific for birth)

What is a good regex fo Java SimpleDateFormat pattern? Story: I have problem with setting eclipse birth date format patter with DateTimeFormatValue, no exceptions(feedback form QA only). So, the ...
3
votes
2answers
406 views

Simple question about java SimpleDateFormat

This will probably be a dumb question, but I don't understand the java date function. Here is some code: SimpleDateFormat sdf = new SimpleDateFormat("hh:mm"); Date s = sdf.parse(var); Calendar scal = ...
3
votes
3answers
320 views

How can I convert this string to a standard date in java?

Earlier I posted the following question: http://stackoverflow.com/questions/3791984/how-can-i-convert-this-date-in-java But now I would like to know how I can convert this string into a date/time. ...
3
votes
3answers
173 views

SimpleDateParser produces incorrect date?

Good morning! I've been working with the following bit of code for the last two hours, scouring forums, Google and the JDK 1.6 docs for any idea what is going on but can't seem to make this work. I ...
3
votes
1answer
294 views

SimpleDateFormat

The following code is giving me the parsed date as "Wed Jan 13 00:00:00 EST 2010" instead of "Wed Jun 13 00:00:00 EST 2010". Any ideas much appreciated. SimpleDateFormat sf = new ...
3
votes
2answers
317 views

Is this a Java DateFormat bug?

The pattern is "dd-MM-yyyy" I think the string "01-01-2010mwwwwwwwwwwwwwww" does not satisfy the pattern, but the following code shows the contrary. Anyone can explain why? public static void ...
3
votes
3answers
2k views

Inconsistent date parsing using SimpleDateFormat

I'm really scratching my head on this one. I've been using SimpleDateFormats with no troubles for a while, but now, using a SimpleDateFormat to parse dates is (only sometimes) just plain wrong. ...
3
votes
5answers
2k views

Why does a new SimpleDateFormat object contain calendar with the wrong year?

I came upon a strange behavior that has left me curious and without a satisfactory explanation as yet. For simplicity, I've reduced the symptoms I've noticed to the following code: import ...
2
votes
3answers
69 views

Convert Json timestamp to normal date and time in javascript

EDITED: Guys sorry if I have offended someone by asking such a noob question, as I see someone have "Marked Down" Question for being inappropriate. I have just started learning Javascript myself and ...
2
votes
2answers
62 views

Y returns 2012 while y returns 2011 in SimpleDateFormat

I wonder why 'Y' returns 2012 while 'y' returns 2011 in SimpleDateFormat: System.out.println(new SimpleDateFormat("Y").format(new Date())); // prints 2012 System.out.println(new ...
2
votes
4answers
50 views

Simple Date Format

I am using simple date format in my app in following way in the class: static SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy"); public static myFunction(final String strDate) { Date ...
2
votes
1answer
62 views

Cannot parse date

I'm trying to parse the date from a certificate to verify its validity and this error is shown: Unparseable date: "Mon Dec 05 09:47:18 CST 2011" The SimpleFormat I'm currently using is: Date date = ...
2
votes
2answers
62 views

SimpleDateFormat timezone parsing

I'm having a tough time parsing this date its the +0 at the end that is causing a problem, does anyone know whats wrong with my format string?? If I remove the +0 from the date string and the Z from ...
2
votes
1answer
89 views

How to get Hours from a date using java

What is the date format to get only hours in 12-hours format from this time Thu Oct 20 13:12:00 GMT+02:00 2011 edit: using this code Date eventDate = tempAppointments.get(i).mStartDate ...
2
votes
2answers
83 views

unix timestamp to datetime in android

My server is returning a timestamp 1322400600 in String, In my android application, i need to convert it like Nov 27, 2011 07:00am. I don't know how to do this please help me out. - Thanks AvMishra ...
2
votes
2answers
111 views

Java day of the week from string

I have this simple code: SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); Date date = format.parse("2011-10-29"); calendar.setTime(date); Log.d("Debug","Day of the week = ...
2
votes
1answer
108 views

Inconsistent behaviour for SimpleDateFormat for timezone Amsterdam

Yesterday I ran into a problem where the date of birth of a person was changed after it was marshalled with XStream from Date to xml and then unmarshalled to Date again. The following code reproduces ...
2
votes
2answers
105 views

DateFormat is printing new Date(0) as epoch + 1 hour

The following test fails: DateFormat df = new SimpleDateFormat("HH:mm:ss z"); assertEquals("00:00:00 GMT", df.format(new Date(0))); expected "00:00:00 GMT" but was "01:00:00 GMT" Could someone ...
2
votes
2answers
60 views

Date-String parsing problem (due to months from 0 to 11)

The code String strDate = "2010-12-01"; SimpleDateFormat sdf = new SimpleDateFormat("yyyy-mm-dd"); Date parsedDate = sdf.parse(strDate); System.out.println(parsedDate); will, ...
2
votes
2answers
314 views

Java Simple Date Format Parse - returning wrong date Time Zone issue?

Sorry, I think I've spent too long on this and have got confused. I've got the following code: System.out.println("Time Now: " + new Date()); Calendar beginningOfDay = new ...
2
votes
3answers
253 views

SimpleDateFormat is not parsing the milliseconds correctly

Background: In my database table, I have two timestamps timeStamp1 = 2011-08-23 14:57:26.662 timeStamp2 = 2011-08-23 14:57:26.9 When I do an "ORDER BY TIMESTAMP ASC", timeStamp2 is considered as ...
2
votes
3answers
205 views

SimpleDateFormat String

I have this code block where argument to dateFormat.format will always be a string thats why I did .toString() here. I am getting error "Cannot format given Object as a Date". Is there any way to do ...
2
votes
3answers
138 views

Simple date format giving the same date for two different strings

I have written a small method to return a date object when given a string. The method is as shown below: public Date getDateObjectFromString(String dateAsString) { SimpleDateFormat sdf = new ...
2
votes
4answers
151 views

Java Date determine if DAY is greater

I have time stamps as string format Sun Jul 10 17:47:55 EDT 2011 I need to determine if the current DAY is greater than the stored day. I will get the current day with Date currentDate = new Date(); ...
2
votes
5answers
332 views

Android: I can't figure out SimpleDateFormat

I have tried and tried, but I cannot get my RSS app to properly format the pubDate into a more user friendly format. String str = "26/08/1994"; SimpleDateFormat formatter = new ...
2
votes
3answers
672 views

SimpleDateFormat: unparseable date exception

After looking after several existing posts, I am still not able to get my SimpleDateFormat parser working. Here is the code: SimpleDateFormat df = new SimpleDateFormat("EEE, dd MMM yyyy ...
2
votes
2answers
208 views

How can java SimpleDateFormat parse this - '3/31/09 10:04 AM()(*&*^%%^$'?

I'm doing some simple validation using SimpleDateFormat, it works fine, except one thing: When value like '3/31/09 10:04 AM()(&^%%^$' is passed to it no ParseException is thrown. It simply ...
2
votes
6answers
309 views

Problem converting date format in Java

I have a string in the form MMM/dd/yyyy, ie. May/21/2010. Now I want to convert it to yyyyMMdd, ie. 20100521. My code is: public static void main(String[] args) { ...
2
votes
1answer
239 views

Capital letter in SimpleDateFormat

executing this piece of code: SimpleDateFormat sdfIn = new SimpleDateFormat("yyyy-MM-dd"); Date date = null; try { ...
2
votes
2answers
1k views

SimpleDateFormat in Android giving current date as 02/32/2011

Today is February 1, 2011. I am trying to generate a date string for Android in the format "MM/DD/yyyy" using SimpleDateFormat. Here is my code: Date d = new Date(); String date = (new ...

1 2 3 4