0
votes
1answer
17 views
Convert rss pubDate to EST in .NET
I am trying to convert the pubDate in the Rss to EST. If you look at the links posted below, they have different timezones. Is there a function which takes any type of dateformat and convert to EST ?
…
0
votes
2answers
51 views
flex3 Format date without timezone
I'm receiving a date from a server in milliseconds since 1-1-1970. I then use the DateFormatter to print the date to the screen. However, Flex adds timedifference and thus it displays a different time …
0
votes
2answers
81 views
Get format like “Y-m-d H:i:s” from a php date
Hello, did someone knows a way to get a string from date that contains the format of the date?
<?php
$date = date ("2009-10-16 21:30:45");
// smething like this?
print date_format …
0
votes
5answers
105 views
Convert to dd/mmm/yyyy
I am retrieving date from MySQL in the format yyyy/mm/dd 00:00:00. I want to convert this date into format dd/MMM/yyyy in PHP. How to do this?
1
vote
1answer
32 views
Can I alter DateFormat.SHORT to include seconds or something similar?
Hi,
In my application I am using code like this:
DateFormat df = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT, locale);
df.setTimeZone(User.getTimeZone());
String s = …
1
vote
3answers
53 views
Silverlight Date Formats
Hello everyone,
I'm getting some very strange date formatting issues in my Silverlight application. My local culture is set to UK, yet I am consistently seeing US dates popping up all over the …
1
vote
2answers
68 views
Formatting time on Android, while following preferences (24 hr clock vs. AM/PM, etc..)
I'm currently using the following code to format time on Google Android:
DateFormat.getDateTimeInstance().format(millis)
While this code honors my timezone and locale settings, it ignores the '24 …
1
vote
1answer
98 views
Localized date and numberformats in GWT
I have a monolingual GWT application (English) and I would like to use localized date and number formats.
I have added <inherits name="com.google.gwt.i18n.I18N"/> to my gwt.xml, but the formats …
5
votes
4answers
169 views
Parsing a date with short month without dot
Hello,
I have a String that represents a date in French locale : 09-oct-08 :
I need to parse that String so I came up with this SimpleDateFormat :
String format2 = "dd-MMM-yy";
But I have a …
0
votes
1answer
95 views
how to change default dateformat AAAA-MM-DD to dd/mm/yyyy in Django?
My locale dateformat is dd/mm/yyyy and Django is requering AAAA-MM-DD
when the user inputs 04/11/2009 Django raises:
_('Enter a valid date in YYYY-MM-DD format.'))
Im using simple html input field …
0
votes
5answers
113 views
Manipulating dates in Javascript without the Date object
It appears I can't use the javascript Date object as it inherintly defaults to US dates when you initialise with a datestring. There is no way of passing any culture information to the date object
…
3
votes
2answers
129 views
Date as simple text (e.g. Today, Yesterday, 1 Week Ago) in .Net
Hi,
Does anyone have a simple function to hand for converting a date to a simple string (using .Net)?
E.g. 14-Oct-09 would read "Today", 13-Oct-09 would read "Yesterday" and 7-Oct-09 would read "1 …
0
votes
2answers
54 views
ASP.NET MVC - XVal clientside validation of dates
I'm having some problems with xVal's clientside validation when it comes to dates. I can't get it to work with a swedish date format which is yyyy-mm-dd, it only seems to work with mm/dd/yyyy. Is …
2
votes
3answers
255 views
Human readable and parsable date format in Java.
I want to save a Date object to a readable string (for example 22/10/2009 21:13:14) that is also parsable back to a Date object.
I have tried many things and the best I could find was to use …
1
vote
6answers
231 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 …
