-1
votes
0answers
29 views
date format flip from uk format to usa format [closed]
why date format flip from uk format to usa format
1
vote
3answers
123 views
SimpleDateFormat and locale based format string
Hi,
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. …
1
vote
6answers
218 views
Java Date Format that allows - / or . as separators within date
What's the nicest way to parse a date that can be in one of the following formats
"dd-MM-yyyy HH:mm"
"dd/MM/yyyy HH:mm"
"dd.MM.yyyy HH:mm"
without creating 3 SimpleDateFormats and parsing …
1
vote
3answers
283 views
Bizarrely 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
359 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 …
0
votes
2answers
164 views
Parsing standard date to GMT
Hey guys,
Can someone show me a piece of java code that parses this date:
2009-08-05
INTO THIS GMT DATE:
2009/217:00:00
====
what i have so far is:
java.text.SimpleDateFormat format = …
3
votes
6answers
563 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 …
