Tagged Questions
A date is a particular point or period of time at which an event occurs, or is expected to.
415
votes
6answers
57k views
Why is subtracting these two times (in 1927) giving a strange result?
If I run the following program, which parses two date strings referencing times one second apart and compares them:
public static void main(String[] args) throws ParseException {
SimpleDateFormat ...
65
votes
6answers
68k views
java.util.Date to XMLGregorianCalendar
Isn't there a convenient way of getting from a java.util.Date to a XMLGregorianCalendar?
62
votes
10answers
22k views
Detecting an “invalid date” Date instance in JavaScript
I'd like to tell the difference between valid and invalid date objects in JS, but couldn't figure out how:
var d = new Date("foo");
console.log(d.toString()); // shows 'Invalid Date'
...
53
votes
4answers
14k views
Convert date to datetime in Python
Silly question, but is there a built-in method for converting a date to a datetime in Python, ie. getting the datetime for the midnight of the date? The opposite conversion is easy - datetime has a ...
44
votes
5answers
4k views
Should I use Java date and time classes or go with a 3rd party library like Joda Time?
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 date ...
43
votes
7answers
14k 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 ...
36
votes
11answers
65k views
Compare 2 dates with JavaScript
Can some one suggest a way to compare values of 2 dates greater then, less then and not in the past using javascript. They values will be coming from text boxes
Thanks
33
votes
8answers
8k views
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 ...
32
votes
2answers
15k views
Converting ISO8601-compliant String to java.util.Date
solved, see answer below
Hi,
I am trying to convert an ISO8601 formatted String to a java.util.Date. I found the pattern
"yyyy-MM-dd'T'HH:mm:ssZ" to be ISO8601-compliant if used with a Locale ...
32
votes
23answers
32k views
Python date time, get date 6 months from now
I am using the datetime module. I am looking to calculate the date 6 months from the current date. Could someone give me a little help doing this?
Edit: The reason I am wanting to generate a date 6 ...
32
votes
11answers
63k views
How can I get the current date and time in UTC or GMT in Java?
When I create a new Date object, it is initialized to the current time but in the local timezone. How can I get the current date and time in GMT?
31
votes
8answers
23k views
How to add 30 minutes to a javascript Date object?
I'd like to get a Date object which is 30 minutes later than another Date object. How to achieve it?
30
votes
4answers
7k views
29
votes
7answers
47k views
How do I use PHP to get the current year?
I want to put a copyright notice in the footer of a web site, but I think it's incredibly tacky for the year to be out-of-date. How would I make the year update automatically with PHP4 and PHP5?
28
votes
7answers
24k views
Sort ArrayList of custom Objects by property
I had a question which is pretty easy if you know the answer I guess. I read about sorting ArrayLists using a Comparator but somehow in all of the examples people used compareTo which according to ...
27
votes
6answers
17k views
How do you convert a JavaScript date to UTC?
Suppose a user of your website enters a date range.
2009-1-1 to 2009-1-3
You need to send this date to a server for some processing, but the server expects all dates and times to be in UTC.
Now ...
26
votes
5answers
20k views
System.currentTimeMillis() vs. new Date() vs. Calendar.getInstance().getTime()
In Java, what are the performance and resource implications of using
System.currentTimeMillis()
vs.
new Date()
vs.
Calendar.getInstance().getTime()
As I understand it, ...
25
votes
2answers
22k views
How to convert java.util.date to java.sql.date?
I am trying to use java.util.Date as input and then creating a query with it - so I need java.sql.Date.
I was surprised to find that it couldn't do the conversion implicitly or explicitly - but I ...
24
votes
6answers
20k views
How do I validate a date in rails?
I want to be able to validate a date in my model in ruby on rails. However, the day, month and year values are already converted into an incorrect date by the time they reach my model.
For example, ...
24
votes
6answers
51k views
How do you format date and time in Android?
How do you format correctly according to the device configuration a date and time when having year, month, day, hour and minute?
23
votes
2answers
231 views
Why do PHP and MySQL unix timestamps diverge on 1983-10-29?
I've been using PHP's strtotime and MySQL's UNIX_TIMESTAMP functions in my app, to convert dates into timestamps. PHP and MySQL are running on my local machine, and these functions generally return ...
23
votes
15answers
14k views
Calculate business days
I need a method for adding "business days" in PHP. For example, Friday 12/5 + 3 business days = Wednesday 12/10.
At a minimum I need the code to understand weekends, but ideally it should account for ...
22
votes
1answer
2k views
In Ruby on Rails, what's the difference between DateTime, Timestamp, Time and Date?
In my experience, getting dates/times right when programming is always fraught with danger and difficulity.
Ruby and Rails have always eluded me on this one, if only due to the overwhelming number ...
22
votes
8answers
23k views
Get the previous month's first and last day dates in c#
I can't think of an easy one or two liner that would get the previous months first day and last day.
I am LINQ-ifying a survey web app, and they squeezed a new requirement in.
The survey must ...
22
votes
14answers
9k views
What is the best way to parse a time into a Date object from user input in Javascript?
I am working on a form widget for users to enter a time of day into a text input (for a calendar application). Using JavaScript (we are using jQuery FWIW), I want to find the best way to parse the ...
22
votes
10answers
61k views
21
votes
6answers
817 views
How do libraries in different programming languages handle Date & Time, Timestamps & Durations, Leapseconds & -years, DSTs & Timezones, …?
Is there a standard body or a specific normative way how time-related things should be implemented in practice (like ICU for Unicode-related tasks) or is this currently a "best-effort", depending on ...
21
votes
9answers
65k views
How can I increment a date by one day in Java?
I am getting date in the format as yyyy-mm-dd. I need to increment this by one day. How can I do this?
19
votes
3answers
568 views
Why were most java.util.Date methods deprecated?
When you look at the javadoc of the java.util.Date class, most of the methods are deprecated. Why was this done?
19
votes
4answers
18k views
How do I get the number of days between two dates in jQuery?
How do I get the number of days between two dates in jQuery? For example, given two dates in input boxes:
<input id="first" value="1/1/2000"/>
<input id="second" value="1/1/2001"/>
...
19
votes
9answers
21k views
How to convert milliseconds into human readable form?
I need to convert an arbitrary amount of milliseconds into Days, Hours, Minutes Second.
For example:
10 Days, 5 hours, 13 minutes, 1 second.
I'm pretty sure that the trick is fairly simple, but I'm ...
18
votes
6answers
11k views
Get month name from Date using JavaScript
How can i generate Month name (e.g: Oct/October) from this date object in JavaScript?
var objDate = new Date("10/11/2009");
17
votes
13answers
4k views
Fuzzy date algorithm
I'm looking for a fuzzy date algorithm. I just started writing one and realised what a tedious task it is. It quickly degenerated into a lot of horrid code to cope with special cases like the ...
17
votes
2answers
10k views
How can I subtract a day from a python date?
I have a python datetime.datetime object. What is the best way to subtract one day?
16
votes
4answers
6k views
Difference in months between two dates
How to calculate the difference in months between two dates in C#?
Is there is equivalent of VB's DateDiff() method in C#. I need to find difference in months between two dates that are years apart. ...
16
votes
2answers
3k views
Python: Initialize a datetime object with seconds since epoch
The time module can be initialized using seconds since epoch:
>>> import time
>>> t1=time.gmtime(1284286794)
>>> t1
time.struct_time(tm_year=2010, tm_mon=9, tm_mday=12, ...
16
votes
5answers
1k views
Holidays - is there a java implementation?
I'd like to know if there is a jar-file out there that could do the following:
DateMidnight dateInQuestion = new DateMidnight(12,12,2000);
DateChecker.isNationalHoliday(dateInQuestion, Locale.ITALY);
...
16
votes
2answers
15k views
Ruby/Rails: converting a Date to a UNIX timestamp
How would I get a UNIX timestamp (number of seconds since 1970 GMT) from a Date object in a Rails app?
I know Time#to_i returns a timestamp, but doing Date#to_time and then getting the timestamp ...
16
votes
3answers
3k views
Python: user friendly time format
Python: I need to show file modification times in "1 day ago", "two hours ago", format.
Is there something ready to do that? It should be in english
16
votes
1answer
15k views
The correct Javascript Date.parse(…) format string?
What is a culture-invariant way of constructing a string such that the Javascript Date() constructor can parse it and create the proper date object?
I have tried these format strings which don't work ...
16
votes
6answers
11k views
handling DATETIME values 0000-00-00 00:00:00 in JDBC
I get an exception (see below) if I try to do
resultset.getString("add_date");
for a JDBC connection to a MySQL database containing a DATETIME value of 0000-00-00 00:00:00 (the quasi-null value ...
15
votes
2answers
301 views
What data structure is recommended for multiple calendars, dates and durations?
I have a requirement to store dates and durations arising from multiple different calendars. In particular I need to store dates that:
Span the change to Gregorian calendars in different countries ...
15
votes
8answers
2k views
How can I calculate what date Good Friday falls on given a year?
Does anyone have a good algorithm to calculate what date Good Friday falls on given the year as an input? Preferably in C#.
15
votes
8answers
39k views
end date greater than start date - jquery validation
how do i check/validate in jquery whether end date [textbox] is greater than start date [textbox]?
15
votes
6answers
7k 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 ...
14
votes
2answers
2k views
Ruby strftime: Month without leading zero?
Does Ruby's strftime have a format for the month without a leading zero?
I found %e for getting the day without the leading zero, but not having any luck with the month.
Ultimately wanting a date ...
14
votes
6answers
7k views
Calculating the Difference Between Two Java Date Instances
I'm using Java's java.util.date class in Scala and want to compare a date object and the current time. I know I can calculate the delta by using getTime():
(new java.util.Date()).getTime() - ...
14
votes
5answers
9k views
How can I parse a time string containing milliseconds in it with python?
I am able to parse strings containing date/time with time.strptime
>>> import time
>>> time.strptime('30/03/09 16:31:32', '%d/%m/%y %H:%M:%S')
(2009, 3, 30, 16, 31, 32, 0, 89, -1)
...
14
votes
3answers
29k views
How to get time difference in minutes in PHP
How to calculate minute difference between two date-times in PHP?
14
votes
9answers
1k 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 ...