Tagged Questions
3
votes
3answers
321 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
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 ...
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
3answers
681 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
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 ...
1
vote
2answers
20 views
Getting the correct GMT format using DateFormat Object
If i have a File object how can i get the lastModified() date of this file in this GMT format: Mon, 23 Jun 2011 17:40:23 GMT.
For example, when i call the java method lastModified() on a file and use ...
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
162 views
Android SimpleDateFormat problem
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
Date date = (Date)formatter.parse("2011-09-13");
Log.e(MY_DEBUG_TAG, "Output is "+ date.getYear() + " /" + date.getMonth() + " / "+ ...
1
vote
2answers
117 views
SQL Server Date Format India to US
I've a service which push date from my SQL server database to web database and the date format that is pushed is "yyyyMMdd".
My database resides in india, so date format and current date is based on ...
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
3answers
998 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
6answers
935 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 ...
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
1answer
121 views
JDK and joda-time dateformatter: how to consider day light savings time
@Jon Skeet, I downloaded Joda-Time as you recommended in, Date parsing/formating with TimeZone and SimpleDateFormat problem around DST switch, and added it to my Java EE / JSF project, attempted to ...
0
votes
5answers
141 views
yyyy-mm-dd and hh:mm (PM/AM) convert into long
I have two strings:
String date = "2011-11-11"
String time="11:00 PM"
i want to merge this date and time and convert them into a long, similar to System.currentTimeMillis().
0
votes
3answers
104 views
Java TimeZone conversions
I understand that java Date is timezoneless and trying to set different timezone on Java Calendar wouldn't convert date to an appropriate Time Zone. So I have tried following code
public static ...
0
votes
3answers
59 views
How do I parse a date string using DateFormat?
I have a date string in the following format:
Thu Oct 20 14:39:19 PST 2011
I would like to parse it using DateFormat to get a Date object. I'm trying it like this:
DateFormat df = ...
0
votes
3answers
157 views
Date format error with “2011-07-27T06:41:11+00:00”
I'm trying to format a time/date string:
String date = "2011-07-27T06:41:11+00:00";
DateFormat formatter = new SimpleDateFormat("yyyy MM-dd'T'HH:mm:ssz"); //2011-07-27T06:41:11+00:00
Date Sdate = ...
0
votes
1answer
98 views
Creating a custom week counter in Java?
I am trying to create a custom week counter but am having quite a lot of trouble and feel like I am going about it all wrong. The method should take in a string date that is in yyyy-MM-dd format and ...
0
votes
3answers
142 views
String to Date; Format of input varies
For the project I'm working on at the moment I need to convert a String to a Date. Unfortunately the date and time aren't formatted the same in all the Strings that need to be converted. In the ...
0
votes
3answers
303 views
Parse short US date into yyyy-MM-dd, java
I want to parse the date "3/27/11" which I think is equal to US short date.
DateFormat df1 = new SimpleDateFormat("MM/dd/yy");
DateFormat df2 = new SimpleDateFormat("yyyy-MM-dd");
Date date = (Date) ...
0
votes
4answers
2k views
Android SimpleDateFormat fails to parse datetime (works fine on sun 1.6 jre)
Any ideas why the followng fails on Android 2.2...
java.text.ParseException: Unparseable date: 2011-02-16 11:38:03.328 UTC
...while it works fine on a sun JRE 1.6 ?
DateFormat dateFormat = new ...
0
votes
2answers
458 views
Format a datetime string to time only
I'm retrieving a datetime from a SQLite DB which comes out in the format...
2011-01-24 02:45:00
In C# I can simply use DateTime.Parse("2011-01-24 02:45:00").ToString("HH:mm") in order to get the ...
0
votes
3answers
424 views
Convert string “11-10-10 12:00:00” into Date object
I want to convert the string "11-10-10 12:00:00" into a Date object, but I am not able to do so. Can you please help me out?
I have the Date object which has the value "Mon Oct 11 00:00:00 IST ...
0
votes
2answers
2k views
Java DateFormat and SimpleDateFormat returning a date that is incorrect
Today is Tuesday, February 9, 2010 and when I print the date I get the wrong date:
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
Date today = ...
0
votes
2answers
1k views
How do I parse a standard date into GMT?
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 = new ...