Tagged Questions
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
196 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
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";
...
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
190 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
156 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
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
2answers
109 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
402 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
408 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
174 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
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
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
112 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
106 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
3answers
260 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
152 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
336 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
312 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
240 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 ...
2
votes
4answers
310 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
240 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
5answers
66 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
72 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
58 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
131 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
105 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
102 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
71 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
303 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
180 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
165 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
461 views
deserializing date in 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
340 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
756 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
983 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
755 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
1answer
47 views
Remove Leading “0” in day of month SimpleDateFormat
Is it possible to remove the "0" in January 04, 2012?
I am currently using the following Java to get the date format like
Monday, January 04, 2012
I would like for it to look like
Monday, January ...
0
votes
0answers
16 views
class cast exception while converting string to date class object?
I am trying to convert string into date type object but keep getting class cast exception.I checked everywhere and found the same way as I am using .I have no idea what mistake I am committing.kindly ...
0
votes
3answers
50 views
Trying to convert string date into a date
java.text.ParseException: Unparseable date: "Sat May 01 00:00:00 EDT 2010"
I am trying to parse this date using the SimpleDateFormat class.
java.util.Date prevStartDate = new Date();
java.util.Date ...
0
votes
1answer
96 views
Json date format conversion
My json string response date is in this format:
"due_date":"2011-11-23"
I want to know how can i convert this into a mm/dd/yyyy format.
0
votes
3answers
121 views
Date.toString() - sql vs util dates
I need to remove time from a Date Object. Here is my try,
Code:
System.out.println("date " + dbDate);
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
...
0
votes
5answers
127 views
Java date pattern for SQL date (ISO 9075)
I am trying to parse an SQL date string (ISO 9075) and that uses microseconds(!) instead of milliseconds, for example
2010-11-22 08:08:08.123456
However, SimpleDateFormat refuses to recognize a ...