Tagged Questions

11
votes
6answers
2k 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
206 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
2answers
3k views

Illegal pattern character 'T' when parsing 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"; ...
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 ...
4
votes
4answers
225 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
170 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 ...
3
votes
2answers
72 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
2answers
127 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
1answer
419 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
443 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
187 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
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
1answer
27 views

what's wrong with my JSpinner.DateEditor?

i am creating my JSpinner. If i don't use "dateSpinner.setEditor(new JSpinner.DateEditor(dateSpinner, "DD:MM:YYYY"));", the GUI works well, displaying the date and time correctly, e.g, 12-2-13 11:39. ...
2
votes
2answers
64 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
1answer
69 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
151 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
2answers
115 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
63 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
3answers
359 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
4answers
184 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
355 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
6answers
338 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
261 views

Capital letter in SimpleDateFormat

executing this piece of code: SimpleDateFormat sdfIn = new SimpleDateFormat("yyyy-MM-dd"); Date date = null; try { ...
2
votes
2answers
2k 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 ...
2
votes
4answers
317 views

convert date from “2009-12 Dec” format to “31-DEC-2009”

'2009-12 Dec' should be converted to '31-DEC-2009' '2010-09 Sep' should be converted to '30-SEP-2010' '2010-02 Feb' should be converted to '28-FEB-2010' '2008-02 Feb' should be converted to ...
2
votes
4answers
248 views

SimpleDateFormatter won't parse!

Hello I am trying to use the SimpleDateFormatter to parse the date Wed, 30 Jun 2010 15:07:06 CST I am using the following code public static SimpleDateFormat postedformat = new ...
1
vote
3answers
53 views

TimeZone gost haunting my datetime parsing

I cannot use Joda. When I try to create a Date or Calendar from a String representing a date or datetime in UTC, the resulting object has a timezone associated with it... Here's the code: Case 1: ...
1
vote
6answers
51 views

SimpleDateFormat, need textual Month

I have this as a string 02/06/2012 1:25 PM EST I want to use SimpleDateFormat to return "Feb" from that data Here is what I tried SimpleDateFormat gottenDate = new SimpleDateFormat("MMM"); ...
1
vote
5answers
72 views

I want to get a formatted Date in Java

I want to get a new Date object with a SimpleDateFormat applied to it. I would like to do something like: SimpleDateFormat myFormat = new SimpleDateFormat("dd MMM yyyy kkmm"); Date today = new ...
1
vote
3answers
91 views

Java date - 12am is stored as 24?

So me and my partner have been working on this project for a while now. We work with dates A LOT in this project, and we recently noticed an issue, and we are rather deep in at this point. We store ...
1
vote
1answer
69 views

SimpleDateFormat.parse returns Date in different timezones

There are many issues with Date and Calendar on android and I'm catch another one. I have to parse few dates (stores as strings) to Date. I wrote method: private Date getDateFromString(String ...
1
vote
5answers
159 views

how to convert string to date and keep the format correct

I am reading in a String from a text file which contains a date in the form of yyMMdd I then want to convert it to type date but when I do that it loses its format. here is an exmaple of what I have ...
1
vote
2answers
120 views

SimpleDateFormat not working

I'm tearing my hair off my head on this one. Trying to parse this string into a Date object: Fri, 28 Oct 2011 07:43:18 GMT But it will not work. Instead I get an ParseException: 10-28 ...
1
vote
2answers
109 views

How to properly format unusual date string using Java SimpleDateFormat?

I've got date in following format: Pon Cze 07, 2011 9:42 pm It's Polish equivalent of English date: Mon Jun 07, 2011 9:42 pm I'm using following SimpleDateFormat matcher: SimpleDateFormat("EEE ...
1
vote
2answers
76 views

How can I format a Date in Java as only month, day and hour?

How would I format the date, if I only need it to print the month (MMM), date (DD) and the hour (HH)? So output would look something like: Jul 18 9 (that being July 18th 09:00). I've tried the ...
1
vote
2answers
339 views

Java - convert date formatted String from SQL db to date object for comparison

I have a string stored in a database (example: Sat Jul 09 14:20:31 EDT 2011) This is stored as string (I am aware of SQLs date capabilities, but I'm not exploring that at this point). I want to pull ...
1
vote
2answers
192 views

Error converting custom date format to another using SimpleDateFormat

What's is wrong with my code bellow? try { // dataFormatOrigin (Wed Jun 01 14:12:42 2011) // this is original string with the date information SimpleDateFormat sdfSource = new ...
1
vote
2answers
2k views

getting java.lang.IllegalArgumentException: Illegal pattern character 'o'? while parsing java.text.SimpleDateFormat

I wanted to convert from string to java.util.Date. for the same purpose I used following code, String timeStamp = "Mon Feb 14 18:15:39 IST 2011"; DateFormat formatter = new SimpleDateFormat("dow mon ...
1
vote
4answers
171 views

Date formatter is not formating the date correctly

I wrote this following java code to format the date and time in specific formats.You can see the below code at ideone . import java.util.Calendar; import java.util.GregorianCalendar; import ...
1
vote
2answers
497 views

Deserializing date from ASP.NET, with Jackson

I have a date in a json string (returned from an ASP.NET rest service) that looks like this: "created": "/Date(1277931782420-0700)/" Jackson is not able to parse this date. I can write my own date ...
1
vote
1answer
349 views

Date difference includes Timezone offset, what's wrong?

I have this code: Date now = new Date(); // the string is in UTC format, so a UTC date must be constructed, I don't know if that happens in this format Date measure = new SimpleDateFormat("yyyy-MM-dd ...
1
vote
3answers
810 views

Why can't this SimpleDateFormat parse this date string?

The SimpleDateFormat: SimpleDateFormat pdf = new SimpleDateFormat("MM dd yyyy hh:mm:ss:SSSaa"); The exception thrown by pdf.parse("Mar 30 2010 5:27:40:140PM");: java.text.ParseException: ...
1
vote
3answers
1k views

Java SimpleDateFormat and compareTo

I've got a question about SimpleDateFormat class and the java.util.Date's compareto method: I'm constructing a Date object, then I format, finally I parse the formatted string and compare to the ...
1
vote
3answers
792 views

What could cause this SimpleDateFormat formatting error?

I have a date stored as a java.sql.Timestamp in a database. The date is "2010-01-20T19:10:35.000Z" and is equivalent to 1264014635743 ms. Somehow, the date is formatted differently on the prod ...
1
vote
3answers
3k views

Strange problem with timezone, calendar and SimpleDateFormat

Let's consider the following code: SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss dd/MM/yyyy", Locale.US); long start = sdf.parse("10:30:00 30/09/2009").getTime(); long end = ...
1
vote
3answers
2k views

SimpleDateFormat and locale based format string

I'm trying to format a date in Java in different ways based on the given locale. For instance I want English users to see "Nov 1, 2009" (formatted by "MMM d, yyyy") and Norwegian users to see "1. nov. ...
0
votes
2answers
29 views

How do I parse a Date to a long with am/pm?

I want to parse my date like "yyyy-mm-dd-hh:mm:ss". And I want to get a long back. My code is: Date date = new SimpleDateFormat("yyyy-MM-dd-hh:mm:ss").parse(exampleDate); long longDate = ...
0
votes
4answers
37 views

Alternatives to SimpleDateFormat for date parsing

I would really need an alternative to SimpleDateFormat, I am converting many-many Strig dates(>100k) from JST to GMT. The problem I have is that my code generates way to many char[] , as I noticed ...
0
votes
1answer
68 views

Awkward Date Format in Java

I'm having trouble parsing this date: Satu, 30 Octo 2010 06:00:00 EDT I think it would be EEEE, dd MMMM yyyy HH:mm:ss Z but it is not working. I would like to format it to Saturday, October 30, ...

1 2