Top "Calendar" questions

A calendar is a system of reckoning time in which the beginning, length and divisions of a year are defined.

How to add minutes to my Date

I have this date object: SimpleDateFormat df = new SimpleDateFormat("yyyy-mm-dd HH:mm"); Date d1 = df.parse(interviewList.get(37).getTime()); value …

java date calendar simpledateformat java.util.date
How do I localize the jQuery UI Datepicker?

I really need a localized dropdown calendar. An English calendar doesn't exactly communicate excellence on a Norwegian website ;-) I …

javascript jquery-ui localization calendar jquery-ui-datepicker
Number of days in particular month of particular year?

How to know how many days has particular month of particular year? String date = "2010-01-19"; String[] ymd = date.split("…

java datetime calendar
How to handle calendar TimeZones using Java?

I have a Timestamp value that comes from my application. The user can be in any given local TimeZone. Since …

java calendar timezone
What's the right way to create a date in Java?

I get confused by the Java API for the Date class. Everything seems to be deprecated and links to the …

java datetime date calendar
How to sanity check a date in Java

I find it curious that the most obvious way to create Date objects in Java has been deprecated and appears …

java validation calendar date
How to add calendar events in Android?

I'm just getting up to speed on Android, and today in a project meeting someone said that Android has no …

android calendar
How to set time to a date object in java

I created a Date object in Java. When I do so, it shows something like: date=Tue Aug 09 00:00:00 IST 2011. As …

java date datetime calendar
How to convert Calendar to java.sql.Date in Java?

Calendar cal; String sql = "INSERT INTO ttable (dt) values (?);" //dt is a dateTime field in ttable PreparedStatement stmt = connection.prepareStatement(…

java sql calendar
last day of month calculation

I am having issues with the calculation of when the next Last Day of the Month is for a notification …

java datetime calendar