Tagged Questions

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 ...
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
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. ...
2
votes
3answers
75 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
85 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
3answers
664 views

Why does this code generate the error: “unparseable date”

I'm trying to use the SimpleDateFormat class to parse a DateTime out of this string: Mon Jan 10 2011 01:15:00 GMT+0000 (GMT Standard Time) I tried the following format string: String example = ...
1
vote
2answers
43 views

SimpleDateFormat not showing the right date format

I have a DateTime field in my SQL database holding and when I try to show it in my JSP page and format it using "dd-MM-yyyy hh:mm:ss", it displays correctly only the date part. For example, for the ...
1
vote
1answer
52 views

SimpleDateFormat takes too long when the time zone is included

I am using this simple date format SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS Z"); the problem is when I use this it takes too long to convert the time, in logcat I ...
1
vote
5answers
130 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
5answers
95 views

Whats the difference in using a and aaa in SimpleDateFormat

I want to display current date as 00:50:32 A Here is my code Date date = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss a"); String time = sdf.format(date); ...
1
vote
3answers
994 views

TimeZone broken in SimpleDateFormat in android 2.3

Android 2.3 was recently released last night. So naturally I tried my app on it and found there was date formatting issue. I have noticed the DateFormatter produces different formats. So do this in a ...
1
vote
1answer
1k views

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 these dates in a similar but not exact format. here are the formats: 9/09 9/2009 09/2009 9/1/2009 ...
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
1answer
339 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
5answers
600 views

Why Java SimpleDateFormat().parse() is printing weird formate?

My input is String formated as the following: 3/4/2010 10:40:01 AM 3/4/2010 10:38:31 AM My code is: DateFormat dateFormat = new SimpleDateFormat("dd/mm/yyyy hh:mm:ss aa"); try ...
0
votes
1answer
28 views

I can't parse date from sqlite. ParseException: Unparseable date

When I take datatime value from database then I get "java.text.ParseException: Unparseable date: 2008-06-29 20:45:00" My code: try { Cursor cur = db.query("table", new String[] { "_id", "id_m", ...
0
votes
1answer
352 views

Format date in the EditText (MM-dd-yyyy) to (yyyy-MM-dd) and write it in sqlite

Format date in the EditText to be written in Spanish format (MM-dd-yyyy) and rewrite it in English format (yyyy-MM-dd) in the sqlite database. Need urgent help ... I'm desperate. Thank you for all. ...
0
votes
1answer
233 views

Parsing a String with a GMT timezone to Date using SimpleDateFormat

I'm having problem parsing the Date from an input string that is of the following format: String input = "Fri Jul 15 12:00:00 GMT+300 2011"; String dateFormat = "EEE MMM d HH:mm:ss z yyyy"; Date ...
0
votes
3answers
126 views

Custom Date and Time String from milliseconds

I have time in milliseconds for ex. 1308700800000; I need to convert it to something like Jun 9'11 at 02:15 PM. I tried using SimpleDateFormat format = new SimpleDateFormat("MMM D'\''YY"); ...
0
votes
1answer
173 views

convert String to Date

I want to convert the following string into Date type this way Date dateToFormat = null; DateFormat formatter = new SimpleDateFormat("E MMM d HH:mm:ss zzzz yyyy"); String databaseDateAsString = ...
0
votes
3answers
415 views

How can I format this date?

I have a date that has the format: "yyyy-MM-dd'T'HH:mm:ss'Z'" I'd like to convert it to something similar to: "3 minutes ago" How can I go about doing this?
0
votes
2answers
195 views

simple date formatter issue in java

I want to parse date of following type: 2010-07-13T17:27:00.000Z How can i do it using simple date formatter in java? what format is to be used?
0
votes
1answer
698 views

Groovy Sql and SimpleDateFormat help

In my database, I have a column type : datetime. Column data example : 2009-02-03 19:04:23.0 I'm using : SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.S"); to define my date ...