12
votes
4answers
643 views
Should I use Java date and time classes or go with a 3rd party library like Joda Time?
Hi,
I'm creating a web based system which will be used in countries from all over the world. One type of data which must be stored is dates and times.
What are the pros and cons of using the Java …
9
votes
8answers
916 views
Declare a TDateTime as a Const in Delphi
As far as I know there is no way to do this, but I am going to ask just in case someone else knows how to do this. How can I declare a date as a const in Delphi?
The only solution I have found is …
9
votes
9answers
749 views
When are API methods marked “deprecated” actually going to go away?
I'm code reviewing a change one of my co-workers just did, and he added a bunch of calls to Date.toMonth(), Date.toYear() and other deprecated Date methods. All these methods were deprecated in JDK …
8
votes
4answers
785 views
How to add one day to a time obtained from time()
I have a time represented as the number of seconds elapsed since midnight, January 1, 1970, UTC (the results of an earlier call to time()). How do I add one day to this time?
Adding 24 * 60 * 60 …
8
votes
9answers
1k views
Is there a good date parser for Java?
Does anyone know a good date parser for different languages/locales. The built-in parser of Java (SimpleDateFormat) is very strict. It should complete missing parts with the current date.
For …
7
votes
2answers
176 views
Handling historical calendar dates
What standards and strategies are there for handling historic dates described in older calendar form?
The contemporary Gregorian calendar, with different length months, leap years, etc. is relatively …
7
votes
9answers
794 views
What is the easiest or most effective way to convert month’s abbreviation to a number in Perl? (ie “jan” to 1)
If I import a library to use a method, would it be worth it? Does importing take up a lot of memory?
7
votes
10answers
6k views
How do I convert a date/time to unix time (aka epoch time, seconds since 1970) in Perl?
Given a date/time as an array of (year, month, day, hour, minute, second), how would you convert it to epoch time, ie, the number of seconds since 1970-01-01 00:00:00 GMT?
Bonus question: If given …
6
votes
8answers
209 views
C# - displaying the build date
I currently have an app displaying the build number in its title window. That's well and good except it means nothing to most of the users, who want to know if they have the latest build - they tend …
6
votes
7answers
490 views
Java Date vs Calendar
Could someone please advise the current "best practice" around Date and Calendar types.
When writing new code, is it best to always favour Calendar over Date, or are there circumstances where Date is …
6
votes
9answers
375 views
End of month calculations
Hi guys
Just wondering if any know of an elegant solution for the following.
If I have 30 June 2009 and I add a month I want it to go to 31 July 2009, not the 30 July 2009.
This logic is based …
6
votes
4answers
180 views
Best way to design a scaleable hits/analytics system?
The company I work for creates applications for the Blackberry platform.
We've been working on a proprietary "analytics system" that allows us to embed code within our applications and have the …
6
votes
3answers
618 views
What are equivalent C# datatypes for the new “date”, “time” and “datetimeoffset” types?
What are the most suitable equivalent C# datatypes for the new "date", "time" and "datetimeoffset" datatypes in Sql Server 2008?
6
votes
5answers
932 views
Why was “new Date(int year, int month, int day)” deprecated?
My application I've recently inherited is FULL of deprecation warnings about the constructor:
Date d = new Date(int year, int month, int day)
Does anyone know or can point to a reason why something …
6
votes
4answers
4k views
How to Convert date into MM/DD/YY format in C#
In My Asp.net webpage I need to display today's date into one of the textbox , so in my form load I wrote the following code
textbox1.text = System.DateTime.Today.ToShortDateString();
this line …
