Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
334 views

What's the best way to store date values in string format?

I have to store date values (TDateTime) in a string format. What is the best way to do this? I considered the following approaches: FloatToStr : looses precision, depends on locale settings ...
8
votes
3answers
592 views

Why Does Java's SimpleDateFormat parse this

Hi I've got a simple date format set up with a custom format string: MMddyy and I give it the following value to parse: 4 1 01 I don't think it should parse this because of the spaces but the Simple ...
7
votes
7answers
3k views

“Java DateFormat is not threadsafe” what does this leads to?

Everybody cautions regarding Java DateFormat not being thread safe and I understand the concept theoretically. But I'm not able to visualize what actual issues we can face due to this. Say, I've a ...
7
votes
2answers
3k views

Parse RSS pubDate to Date object in java

How can I parse a pubDate from a RSS feed to a Date object in java. The format in the RSS feed: Sat, 24 Apr 2010 14:01:00 GMT What I have at the moment: DateFormat dateFormat = ...
6
votes
1answer
198 views

Returning a date format from an unknown format of date string in java [closed]

Possible Duplicate: Parse any date in Java Suppose we have a string of date in a format (unknown to the user). Examples of acceptable dates that you can receive from a user: ...
5
votes
1answer
107 views

Help interpreting/converting odd date format

I have data pulled from a database and stored in Stata .dta files. But when I read it into R using the foreign package, I get a date format unlike any I've seen. All of the other dates are "%m/%d/%Y" ...
5
votes
1answer
4k views

How to format a date in VisualForce?

In Salesforce, if I'm binding a date into a VisualForce page, how do I apply custom formatting to it? Example: <apex:page standardController="Contact"> <apex:pageBlock title="Test"> ...
5
votes
4answers
715 views

Parsing a date with short month without dot

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 problem ...
5
votes
5answers
1k 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 ...
5
votes
10answers
11k views

Java date format to JavaScript date format

I would like to be able to convert a Java date format string, e.g. dd/MM/yyyy (07/06/2009) to a JavaScript date format string, e.g. dd/mm/yy (07/06/2009). Has anyone done this before, or got any ...
4
votes
1answer
222 views

HttpWebRequest Date Header Format

I am using C# ASP.NET 4. So far as I can tell, the HttpWebRequest object is not using the format defined by RFC2616 for the Date header. Is there a way to tell a DateTime class how I want the string ...
4
votes
6answers
343 views

How to format $.now() with Jquery

$.now() gives me the time as miliseconds . I need to show it something like hh:mm:ss How can I do that in Jquery ? Thanks in advance,
4
votes
6answers
560 views

Synchronizing on SimpleDateFormat vs. clone

We know that the dateformat classes are not thread safe. I have a multi-threaded scenario where dateformats needs to be used. I can't really create a new instance in new thread as SimpledateFormat ...
4
votes
3answers
153 views

String to datetime

I saved a datetime.datetime.now() as a string. Now I have a string value, i.e. 2010-10-08 14:26:01.220000 How can I convert this string to Oct 8th 2010 ? Thanks
4
votes
3answers
281 views

How to format a date with slashes in C#

When i write a date in C# by using DateTime.Now.ToString("yyyy/MM/dd") then it returns 2010-09-10, but I need 2010/09/10. How do I make it output slashes?
4
votes
3answers
3k 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 ...
4
votes
2answers
770 views

Date as simple text (e.g. Today, Yesterday, 1 Week Ago) in .Net

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 Week ...
3
votes
1answer
98 views

Global registration of field formats in Wicket

I've carefully studied Jonik's entry about customizing BigDecimal formatting in Wicket. Thanks for this excellent piece of code. Unfortunately I can't get it to work for my use case. I want to ...
3
votes
1answer
34 views

Datetime conversion error for 1 sql server, but not another

I've got 2 servers running SQL Server 2008, and I have the following query: SELECT cast('13/1/2011' as datetime) If I execute this query on Server A I get the result: 2011-01-13 00:00:00.000 ...
3
votes
6answers
167 views

How to check if a string is a legal “dd/mm/yyyy” date?

Given a string str, how could I check if it is in the dd/mm/yyyy format and contains a legal date ? Some examples: bla bla // false 14/09/2011 // true 09/14/2011 // false 14/9/2011 ...
3
votes
3answers
135 views

Distinguishing and Parsing Dates in Java

i know this topic isn't new, though i have to dig it up again. I already searched the Web numerous times (including some Threads here on stackoverflow) but haven't found a satisfying answer so far. ...
3
votes
1answer
290 views

What string date format will javascript's parse recognize?

i know when constructing a Date object in javascript with a dateString parameter, the string must be something that parse() can recognize. What date format can parse recognize? For example: var ...
3
votes
5answers
121 views

How to convert this date format in php?

I receive this date format from facebook and google docs: 2011-02-25T10:55:25+0000 How can I convert it to something like 25/02/2011 10:55:25
3
votes
3answers
651 views

How to show Persian numbers on ASP.NET MVC page?

I'm building a site which needs to support both English and Persian language. The site is built with ASP.NET MVC 3 and .NET 4 (C#). All my controllers inherit from a BaseController, which sets culture ...
3
votes
2answers
111 views

Subsonic 3.0 ActiveRecord with dates

I'm having a little trouble with a query. In my database datetimes are stored as YYYY-MM-dd HH:mm:ss I have the following LINQ query: var visitors = Visitor.All().Where(x=>x.Date_Moderated < ...
3
votes
3answers
889 views

C# DateTime.ParseExact not working at all, why?

I am attempting to parse the following String into a DateTime object in c# DateTime.ParseExact("20101108 230125","yyyyMMdd hhmmss", null) although the value looks correct the Parse Exact method ...
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. ...
3
votes
2answers
404 views

What is the difference between struct_time and datetime in Python?

Is one preferred over the other? If so, in all cases or just a few? I am intending to use some form of date class for keeping long lists of date and time data, e.g., '2009-01-01 10:12:00'.
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 ...
3
votes
1answer
273 views

Java Date sorting method?

I have an String array of dates in the format ex:'2010-05-04 11:26:46 +0530'. How can I check whether a particular date in the array is > today? thanks
3
votes
2answers
463 views

SimpleDateFormat give inconsistent results

I am trying to parse a date and I am getting different results when I run the code locally/BST compare to a server in Paris/CEST. I've reproduced the issue in a the following sample. This is trying ...
3
votes
3answers
638 views

Java date format - including additional characters

Is there an equivalent to php date() style formatting in Java? I mean, in php I can backslash-escape characters to have them treated literally. I.e. yyyy \y\e\a\r would become 2010 year. I did not ...
3
votes
4answers
958 views

Silverlight Date Formats

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 place. I can easily ...
2
votes
3answers
61 views

Android : Get day of the week from date?

How can i format the date to be like this Mon, 27 Nov 2011 public static String sFleTimeToDate(double ft) { double date = ft / 10000 - 11644455600000L; date += ...
2
votes
2answers
30 views

MySQL date format and parsing

We have two websites using the same MqSQL database. One in English the other in Czech. We use dates which are shown in the database as 2011-01-22 for example. When called via PHP the format is ...
2
votes
1answer
33 views

convert mixed date formats in a data frame

I have extracted data to a data frame with mixed format dates that need consolidated. The structure of the data frame is as follows: dateDF <- structure(list(id = 1:7, value = c(5813L, 8706L, ...
2
votes
3answers
77 views

Why does this query give an empty set when formatting dates with MySQL Database?

Why this query Gives empty set with 3 warnings? SELECT * FROM Productions WHERE date_prod=DATE_FORMAT('01/01/2012','%Y/%m/%d'); this is what in the Productions Table. ...
2
votes
1answer
59 views

Changing dateFormat in ExtJS isn't changing the date submitted

I'm using Extensible's Calendar http://ext.ensible.com/products/calendar/ but when submitting an event date it's not using the format I'd like for my MySQL backend. I'm trying to have my Extensible ...
2
votes
2answers
91 views

Date formatting and parsing issue

I have checked this site and the web for a solution but with no result. I have been looking all over the web for a solution to my date format problem. I have a string that I want to convert into a ...
2
votes
3answers
44 views

Transform String into Date using DateFormat

I get this date as a string from SOAP message "2009-12-02T12:58:38.415+01:00" Most i could i could identify and vary on subject was to play with this format yyyy-MM-dd ? hh:mm:ss.???? I tried ...
2
votes
2answers
76 views

change new date format

I am trying to get today's date with some specific format: var d = new Date(); var curr_year = d.getFullYear(); var curr_Month = d.getMonth(); var curr_date = d.getDate(); var todayDate = ...
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
158 views

PHP strtotime returns a 1970 date when date column is null

I want to display $row->depositdate in dd-mm-yyyy format. If the date column in database is null the date displayed is : 01-01-1970 echo "<td align=center>".date('d-m-Y', ...
2
votes
1answer
97 views

Convert a java.text.DateFormat instance to a strftime string?

I've got a DateFormat object that I would like to turn into a strftime string so I can get consistent date formatting across multiple languages. Is there something in the SDK that I'm missing? If not, ...
2
votes
1answer
96 views

Get Date from String '2011-08-16T19:03:21.000Z'

I ask a database for the date of an object. I get back a string as such: 2011-08-16T19:03:21.000Z (Here's another one: 2011-08-12T02:13:16.000Z); Edit: Here is another one that I made August 16th, ...
2
votes
2answers
78 views

What is the most user friendly dateformat? [closed]

What is - from a usability point of view - the best way to format dates? Should I rather use absolute dates like: 05.07.2011 07/05/2011 or would it be better to print dates relative to the ...
2
votes
3answers
670 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
1answer
153 views

Can I localize an ASP.Net MVC 2 application to English but change the date format?

With the following tag in web.config I localized the application to english <globalization culture="en-US" uiCulture="en" /> Can I change the date format to 'dd/MM/yyyy' and keep all other ...
2
votes
2answers
155 views

c# custom date format

I would like to have the word "day(s)" displayed in the output. I've tried putting escape characters in front of just the "-", in front of all the characters and spaces in "days". Any ideas or ...
2
votes
1answer
264 views

Date separator issue

I have the following code DateTime.Now.ToString("MM/dd/yyyy") It always gives me this output : "04.13.2011" instead of "04/13/2011". May I know why I am getting this weird issue?

1 2 3 4 5 6