active questions tagged date - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T20:59:08Zhttp://stackoverflow.com/feeds/tag/datehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1925629/determine-if-a-year-is-leap-and-if-a-date-is-valid-in-blackberry1Determine if a year is leap and if a date is valid in BlackberryKaddy2009-12-18T00:56:01Z2009-12-21T20:33:38Z
<p>i get a date input from the user..in this case i need to determine if the year the user entered is a leap year or not ...and after the user has entered the entire date i.e the month date and year...i need to check if the date is in fact valid if yes need to determine the day for that particular date.. can some one tell me how this could be done..</p>
http://stackoverflow.com/questions/1941869/compare-date-time-via-vba-with-date-time-in-access-db0compare date/time via VBA with date/time in Access DBunknown (google)2009-12-21T18:45:30Z2009-12-21T19:04:35Z
<p>Hi,</p>
<p>How to compare a date/time via VBA with a date/time in an Access DB?</p>
<p>The query I use</p>
<pre><code>adoRS.Open "SELECT * FROM currentpositions WHERE ((currentpositions.
[dateLT])=" & "#" & date_from_message & "#" & ")", adoConn, adOpenStatic,
adLockOptimistic
</code></pre>
<p>I only achieve to compare a date.<br>
Anybody an idea?</p>
<p>Regards<br>
Camastanta</p>
http://stackoverflow.com/questions/1940338/date-difference-in-php0Date Difference in php?mysqllearner2009-12-21T14:15:12Z2009-12-21T15:09:02Z
<p>Is there a quick way to calculate date difference in php? For example:</p>
<pre><code>$date1 = '2009-11-12 12:09:08';
$date2 = '2009-12-01 08:20:11';
</code></pre>
<p>And then do a calculation, $date2 minus $date1</p>
<p>I read php.net documentation, but no luck. Is there a quick way to do it?</p>
<p>EDIT:</p>
<p>I will put up the whole answer (for some people who might curious of how to do it)</p>
<pre><code>$date1 = '2009-12-20 20:12:10';
$date2 = '2009-12-24 12:12:10';
$ts1 = strtotime($date1);
$ts2 = strtotime($date2);
$seconds_diff = $ts2 - $ts1;
echo floor($seconds_diff/3600/24);
</code></pre>
<p>Result return in "days", you can get your desired result by playing the $seconds_diff, which is the difference in seconds</p>
http://stackoverflow.com/questions/1937622/convert-date-to-datetime-in-python1Convert date to datetime in PythonEvgeny2009-12-21T00:26:01Z2009-12-21T01:09:48Z
<p>Silly question, but is there a built-in method for converting a <code>date</code> to a <code>datetime</code> in Python, ie. getting the <code>datetime</code> for the midnight of the <code>date</code>? The opposite conversion is easy - <code>datetime</code> has a <code>.date()</code> method. Do I really have to manually call <code>datetime(d.year, d.month, d.day)</code> ?</p>
<p><strong>Edit:</strong> and the winner is:</p>
<pre><code>datetime.combine(d, time())
</code></pre>
http://stackoverflow.com/questions/1933993/connecting-nodes-to-multiple-dates0Connecting nodes to multiple datesLeandro Ardissone2009-12-19T20:06:58Z2009-12-20T10:06:17Z
<p>I have company website, with many offices around the world (around 50 offices).
The company want to create a gift giveaway with the employees in a specific company each specific day.</p>
<p>For example:</p>
<pre><code>Office 1: will do the giveaway the days: 1/1/2010, 7/1/2010, 15/1/2010, etc...
Office 2: the days: 2/1/2010, 9/1/2010, 19/1/2010, etc...
Office 3: ....
Office 50: ...
</code></pre>
<p>(the days are setup manually to specific offices, no need of an algorithm here)</p>
<p>I have a node per Office, it's a CCK content type with details of each office (location, phone, email, etc), now I need to assign those days to the offices.</p>
<p>But my problem here is that I don't need to create events (or at least node events) because I don't need to store any data in the event. Just need to say: <strong>Office 1? Yes, days 1/1/2010, 7/1/2010, etc...</strong><br>
Nothing else, just to know the dates.</p>
<p>And, if possible, make them available to display in the calendar module.</p>
<p>What is your suggestion?</p>
http://stackoverflow.com/questions/1934352/how-to-test-date-and-datetime-with-mysql0how to test date and datetime with mysqlunknown (google)2009-12-19T22:51:33Z2009-12-19T23:11:47Z
<p>hi guys, My table is using a datetime <code>(YYYY-MM-DD HH:MM:SS)</code> and i need to display today's entries.</p>
<p>my code is only : </p>
<pre><code>SELECT *
FROM table
WHERE date = '$date'
ORDER BY score DESC
</code></pre>
<p>with </p>
<pre><code>$date = date("Y-m-d");
</code></pre>
<p>well, as expected it doesnt work :| you guys have a solution here ?</p>
http://stackoverflow.com/questions/1933435/mysql-who-are-today-on-between-2-diferent-dates0MySQL: Who are today "on" between 2 diferent datesjsk2009-12-19T16:55:14Z2009-12-19T16:58:02Z
<p>I have a Mysql problem. (I use PHP with it).</p>
<p>For example I have this kind of database:</p>
<p>Name | Started and | will end<br>
Jason | 2009-12-17 | 2009-12-24<br>
Ericke | 2009-12-12 | 2009-12-30<br>
Maria | 2010-01-02 | 2010-01-10<br></p>
<p>With mysql (or php) question I would like to get the names of people, which are "on" right now (2009-12-19).</p>
<p>The answer should be:<br>
Jason <br>
Ericke </p>
<p>Thank you for your great help in advance!</p>
http://stackoverflow.com/questions/1930158/how-to-parse-date-from-http-last-modified-header0How to parse Date from HTTP Last-Modified header?levanovd2009-12-18T19:15:04Z2009-12-18T19:58:12Z
<p>HTTP Last-Modified header contains date in following format (example):<br>
<code>Wed, 09 Apr 2008 23:55:38 GMT</code><br>
What is the easiest way to parse <strong>java.util.Date</strong> from this string?</p>
http://stackoverflow.com/questions/1929057/how-many-problems-are-in-the-following-date-parsing-routines-that-come-from-a-rea0How many problems are in the following date parsing routines that come from a real-world project?LES22009-12-18T16:01:52Z2009-12-18T16:07:11Z
<p>These methods are laughably stupid, IMO, but I want to get a feel for what other developers think of such code. Criticisms may include technical and stylistic errors. Corrections may use anything from Apache commons-lang, such as StringUtils, DateUtils, etc, as well as anything in Java 5. The code is intended for a web application, if that would affect your style. These four methods are all defined in the same file, too, if that matters. Did I mention that there are no unit tests for this code either?! What would you do to fix the situation? I just happened upon this file, and it's not my immediate task to fix this code. I could in my spare time, if so desired.</p>
<p>Method one:</p>
<pre><code> public static boolean isFromDateBeforeOrSameAsToDate(final String fromDate,
final String toDate) {
boolean isFromDateBeforeOrSameAsToDate = false;
Date fromDt = null;
Date toDt = null;
try {
fromDt = CoreUtils.parseTime(fromDate, CoreConstants.DATE_PARSER);
toDt = CoreUtils.parseTime(toDate, CoreConstants.DATE_PARSER);
// if the FROM date is same as the TO date - its OK
// if the FROM date is before the TO date - its OK
if (fromDt.before(toDt) || fromDt.equals(toDt)) {
isFromDateBeforeOrSameAsToDate = true;
}
} catch (ParseException e) {
e.printStackTrace();
}
return isFromDateBeforeOrSameAsToDate;
}
</code></pre>
<p>Method two:</p>
<pre><code> public static boolean isDateSameAsToday(final Date date) {
boolean isSameAsToday = false;
if (date != null) {
Calendar current = Calendar.getInstance();
Calendar compare = Calendar.getInstance();
compare.setTime(date);
if ((current.get(Calendar.DATE) == compare.get(Calendar.DATE))
&& (current.get(Calendar.MONTH) == compare
.get(Calendar.MONTH))
&& (current.get(Calendar.YEAR) == compare
.get(Calendar.YEAR))) {
isSameAsToday = true;
}
}
return isSameAsToday;
}
</code></pre>
<p>Method three:</p>
<pre><code> public static boolean areDatesSame(final String fromDate,
final String toDate) {
boolean areDatesSame = false;
Date fromDt = null;
Date toDt = null;
try {
if (fromDate.length() > 0) {
fromDt = CoreUtils.parseTime(fromDate,
CoreConstants.DATE_PARSER);
}
if (toDate.length() > 0) {
toDt = CoreUtils.parseTime(toDate, CoreConstants.DATE_PARSER);
}
if (fromDt != null && toDt != null) {
if (fromDt.equals(toDt)) {
areDatesSame = true;
}
}
} catch (ParseException e) {
if (logger.isDebugEnabled()) {
e.printStackTrace();
}
}
return areDatesSame;
}
</code></pre>
<p>Method four:</p>
<pre><code> public static boolean isDateCurrentOrInThePast(final Date compareDate) {
boolean isDateCurrentOrInThePast = false;
if (compareDate != null) {
Calendar current = Calendar.getInstance();
Calendar compare = Calendar.getInstance();
compare.setTime(compareDate);
if (current.get(Calendar.YEAR) > compare.get(Calendar.YEAR)) {
isDateCurrentOrInThePast = true;
}
if (current.get(Calendar.YEAR) == compare.get(Calendar.YEAR)) {
if (current.get(Calendar.MONTH) > compare.get(Calendar.MONTH)) {
isDateCurrentOrInThePast = true;
}
}
if (current.get(Calendar.YEAR) == compare.get(Calendar.YEAR)) {
if (current.get(Calendar.MONTH) == compare.get(Calendar.MONTH)) {
if (current.get(Calendar.DATE) >= compare
.get(Calendar.DATE)) {
isDateCurrentOrInThePast = true;
}
}
}
}
return isDateCurrentOrInThePast;
}
</code></pre>
<p>Here is how I would tend to write the same thing (well, first I would write unit tests, but I'll skip that here).</p>
<pre><code> public static int compareDatesByField(final Date firstDate,
final Date secondDate, final int field) {
return DateUtils.truncate(firstDate, field).compareTo(
DateUtils.truncate(secondDate, field));
}
public static int compareDatesByDate(final Date firstDate,
final Date secondDate) {
return compareDatesByField(firstDate, secondDate, Calendar.DATE);
}
// etc. as required, although I prefer not bloating classes which little
// methods that add little value ...
// e.g., the following methods are of dubious value, depending on taste
public static boolean lessThan(int compareToResult) {
return compareToResut < 0;
}
public static boolean equalTo(int compareToResult) {
return compareToResut == 0;
}
public static boolean greaterThan(int compareToResult) {
return compareToResut > 0;
}
public static boolean lessThanOrEqualTo(int compareToResult) {
return compareToResut <= 0;
}
public static boolean greaterThanOrEqualTo(int compareToResult) {
return compareToResut >= 0;
}
// time-semantic versions of the dubious methods - perhaps these go in TimeUtils ?
public static boolean before(int compareToResult) {
return compareToResut < 0;
}
public static boolean on(int compareToResult) {
return compareToResut == 0;
}
public static boolean after(int compareToResult) {
return compareToResut > 0;
}
public static boolean onOrBefore(int compareToResult) {
return compareToResut <= 0;
}
public static boolean onOrAfter(int compareToResult) {
return compareToResut >= 0;
}
</code></pre>
<p>Clients could then use the method as follows:</p>
<pre><code>/* note: Validate library from Apache Commons-Lang throws
* IllegalArgumentException when arguments are not valid
* (this comment would not accompany actual code since the
* Javadoc for Validate would explain that for those unfamiliar with it)
*/
Validate.isTrue(onOrAfter(compareDatesByDate(registrationDate, desiredEventDate),
"desiredEventDate must be on or after the *day* of registration: ", desiredEventDate);
</code></pre>
http://stackoverflow.com/questions/1927663/formatting-date-on-java1Formatting Date on JavaJoão Madureira Pires2009-12-18T11:28:39Z2009-12-18T12:12:59Z
<p>Hi there.</p>
<p>I have a String with the following format: january_2005 (MMMMMMM_yyyy)</p>
<p>and i want to convert it to a mysql acceptable date value to insert it on the database.</p>
<p>I need to do it on Java.</p>
<p>Does anyone knows how to do it?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1920820/is-there-a-perl-equivalent-of-sas-intnx-function-or-javascripts-dateadd-functio2Is there a Perl equivalent of SAS' INTNX function or Javascript's Dateadd function?Mike 2009-12-17T10:35:32Z2009-12-18T04:04:43Z
<p>I'm trying to convert Chinese lunar system to Gregorian using Perl, both for fun and for learning purposes. I thought there was some kind of easy mathematical algorithm to do the job but turned out I was wrong. Anyway, after a little googling around I came aross some ready SAS code that could do the job. Well, it was not too difficult for me to figure out how to rewrite most of the code in Perl. But there is something like this:</p>
<pre><code>Convert2Gregorian = INTNX ('day', conDate, AddDay-1);
</code></pre>
<p>Google tells me that INTNX is a function that can return a date after which a certain date interval has been added. But using the keywords "Perl INTNX" gave me nothing useful. I then found a script written in Javascript, the general approach is about the same except that the Javascript uses Dateadd function, something like:</p>
<pre><code>Return DateAdd(DateInterval.Day, AddDay - 1, conDate)
</code></pre>
<p>I also tried searching using PPM but was unable to find the module I wanted. Can someone kindly give me some pointers? </p>
<p>Thanks in advance :)</p>
<p><strong>Update</strong></p>
<p>Thanks to @psilva and @hobbs :)</p>
<p>Haha, finally I can translate one programming language to another. It's fun :)
Just for fun and maybe for later reference:
Here's the original SAS code and the Perl code translated by me. Correct me if I'm wrong :)</p>
<p>Note: Data incomplete.</p>
<p>SAS CODE IS AS FOLLOWS:</p>
<pre><code>data DateNtoG (drop = Ngstrings conDate AddMonth AddDay Mrunyue I);
array NGlist{43} $18_TEMPORARY_(
"010110101010170130" /*(1968)*/
"010101101010000217" /*(1969)*/
"100101101101000206" /*(1970)*/
"010010101110150127" /*(1971)*/
);
input tYear tMonth tDay RunYue;
if (tyear >1967 and tyear<2011) then do;
NGstrings = NGlist(tYear - 1967);
conDate = MDY (substr (NGstrings,15,2),(NGstrings, 17,2), tYear);
AddMonth = tMonth;
select (substr(NGstrings, 14, 1));
when ("A" ) Mrunyue=10;
when ("B" ) Mrunyue=11;
when ( "C" ) Mrunyue=12;
otherwise Mrunyue = substr (NGstrings, 14,1);
end;
if ((RunYue=1) and (tMonth=Mrunyue) ANDMrunyue>0)or ((tMonth Mrunyue) AND Mrunyue>0) then
do;
Addmonth = tMonth+1;
end;
AddDay = tDay;
do i = 1 To AddMonth-1;
AddDay = AddDay + 29 + substr(NGstrings,i,1);
end;
dNtoG = INTNX ('day', conDate, AddDay - 1);
put "Transfereddate:" dNtoGdate9.;
end;
</code></pre>
<p>TRANSLATED Perl CODE IS AS FOLLOWS:
didn't handle the undefined situations for the moment</p>
<p>(I Changed the original SAS variable names)</p>
<pre><code>#!perl
# A Chinese-Gregorian Calendar System Converter just for Testing
use Date::Calc qw(Add_Delta_Days);
use integer;
use strict;
use warnings;
$_ = shift @ARGV;
if (length == 8) {
$_.=0;
}
my ($Lunar_Year,$Lunar_Month,$Lunar_Day,$Leap_Month) = /(\d\d\d\d)(\d\d)(\d\d)(\d)/;
my %Lunar_Year_Patterns = qw/1968 010110101010170130 1969 010101101010000217 1970 100101101101000206 1971 010010101110150127/;
if (substr ($Lunar_Year_Patterns{$Lunar_Year},13,1) =~ /A/) {
$Leap_Month = 10;
} elsif (substr ($Lunar_Year_Patterns{$Lunar_Year},13,1)=~ /B/){
$Leap_Month = 11;
} elsif (substr ($Lunar_Year_Patterns{$Lunar_Year},13,1)=~ /C/){
$Leap_Month = 12;
} else {
$Leap_Month = substr($Lunar_Year_Patterns{$Lunar_Year},13,1);
}
my $First_Lunar_Day_In_Gregorian_Month = substr($Lunar_Year_Patterns{$Lunar_Year},14,2);
my $First_Lunar_Day_In_Gregorian_Day = substr($Lunar_Year_Patterns{$Lunar_Year},16,2);
my $AddMonth;
if ( (($Leap_Month ==1) && ($Lunar_Month == $Leap_Month) && ($Leap_Month > 0)) || (($Lunar_Month > $Leap_Month) && ($Leap_Month>0) ) ){
$AddMonth = $Lunar_Month +1;
} else {
$AddMonth = $Lunar_Month;
}
my $AddDay;
$AddDay = $Lunar_Day;
for(my $i = 1; $i <= $AddMonth - 1; $i++){
$AddDay = $AddDay +29 + substr($Lunar_Year_Patterns{$Lunar_Year},$i,1);
}
my @Gregorian = Add_Delta_Days($Lunar_Year,$First_Lunar_Day_In_Gregorian_Month,$First_Lunar_Day_In_Gregorian_Day,$AddDay -1);
print @Gregorian;
</code></pre>
http://stackoverflow.com/questions/1924967/sharepoint-designer-is-there-a-way-to-calculate-a-date-difference-in-a-workflow0Sharepoint Designer - is there a way to calculate a date difference in a workflow?notnot2009-12-17T22:13:20Z2009-12-18T00:02:02Z
<p>Maybe I'm just crazy... So, with SPD I can add any time unit to a date and put that into a variable, but I can't seem to find anything that will let me calculate the difference between two dates. "Do Calculation" only lets me pick from numeric values. Am I missing something here? Seems like something which should be obvious.</p>
http://stackoverflow.com/questions/1923569/php-echo-timezone-based-on-gmt-offset0PHP Echo Timezone based on GMT offsetJosh2009-12-17T18:09:04Z2009-12-17T19:06:19Z
<p>I have an application that stores GMT time data in a MySQL db like this: 2009-12-16 15:27:47.</p>
<p>The user's timezone offset is stored in another column like this: -6</p>
<p>The above timezone is GMT-6, which is CST. Is there any way I can echo CST (i.e. - date('T")) from the GMT offset data?</p>
<p>Note: I should also add that the application global timezone is set using: date_default_timezone_set('GMT');</p>
http://stackoverflow.com/questions/1904317/c-boost-date-with-format-dd-mm-yyyy6C++ Boost date with format dd/mm/yyyy?Alfredo2009-12-14T23:39:39Z2009-12-17T17:12:07Z
<p>How could I print the current date, using <a href="http://en.wikipedia.org/wiki/Boost%5FC%2B%2B%5FLibraries" rel="nofollow">Boost</a> libraries, in the format dd/mm/yyyy H?</p>
<p>What I have:</p>
<pre><code>boost::posix_time::ptime now = boost::posix_time::second_clock::local_time();
cout << boost::posix_time::to_simple_string(now).c_str();
2009-Dec-14 23:31:40
</code></pre>
<p>But I want:</p>
<blockquote>
<p>14-Dec-2009 23:31:40</p>
</blockquote>
http://stackoverflow.com/questions/1359188/c-regular-expression-to-validate-a-date2C# Regular Expression to validate a date? Kettenbach2009-08-31T20:11:43Z2009-12-17T16:48:03Z
<p>I am trying to validate a date entered into a text box. There is an input mask on the textbox which forces input of xx/xx/xxxx. I am trying to use a regular expression validator to enforce that a correct date is entered. I am not skilled in RegEx bascially at all. My co-worker found this one on the internet but I can't really tell what it's doing.</p>
<p>Does this look right? Seems overly complicated...</p>
<pre><code>(^((((0[1-9])|([1-2][0-9])|(3[0-1]))|([1-9]))\x2F(((0[1-9])|(1[0-2]))|([1-9]))\x2F(([0-9]{2})|(((19)|([2]([0]{1})))([0-9]{2}))))$)
</code></pre>
<p>Does anyone know of a less complex expression that essentially does what I need? </p>
<p>Thanks,
~ck in San Diego</p>
http://stackoverflow.com/questions/1920809/problem-with-regional-settings-date0Problem with regional settings dateASHOK2009-12-17T10:33:32Z2009-12-17T10:41:34Z
<p>Hi Guys,</p>
<p>I got a problem with the date settings on my client system,</p>
<p>My program demands to set the date as DD/MM/YYYY and I used the type as text in the database,</p>
<p>so I am unable to see what was the date format in my client computers regional settings</p>
<p>so if my client computers regional setting is MM/DD/YYYY if while checking the date criteria in the code problem is occuring</p>
<p>can anyone help me for this problem</p>
http://stackoverflow.com/questions/1883561/c-how-to-determine-bios-date-change1c# how to determine bios date changejmpena2009-12-10T19:57:03Z2009-12-17T06:01:01Z
<p>Hello how can i determine with a program (c#) if the Bios Date has Change ?</p>
<p><strong>UPDATED</strong></p>
<p>i'm looking for the machine date, because I want write program that check if some body change that value, figure this out i hava a transaction file that record some info with date and time, and for the registration of this values i have a due time and if some body stop the machine before that due time and wait until the time after the due time to change the bios datetime back and then place the records with that time, i want to know that.</p>
http://stackoverflow.com/questions/1916190/init-javascript-date-object0Init javascript Date objectJenson2009-12-16T17:17:17Z2009-12-16T17:28:08Z
<p>Hi,</p>
<p>I would like to retrieve a Javascript object Date for new year. I want to user new Date(); object and init it to the 2009-01-01 (it's for a countdown).</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1904755/xsd-and-date-range-validation0XSD and Date Range ValidationLakeshore2009-12-15T01:46:28Z2009-12-15T19:23:36Z
<p>How would I write the XSD to validate the StartDate element and EndDate element are within the Quarter element and Year element? Thanks.</p>
<pre><code><OrganizationName>Chevron</OrganizationName>
<Quarter>4</Quarter>
<Year>2010</Year>
<Fuel>
<FuelPathwayCode>CARBOBCB001</FuelPathwayCode>
<PhysicalPathwayCode>PP001</PhysicalPathwayCode>
<transaction-item type="Production or Import">
<StartDate>2010-04-01</StartDate>
<EndDate>2010-04-15</EndDate>
<Amount>1000</Amount>
<BusinessPartnerID>2</BusinessPartnerID>
<Description>Test description</Description>
</transaction-item>
</code></pre>
http://stackoverflow.com/questions/1908387/java-date-cut-off-time-information1Java Date cut off time informationMarco2009-12-15T15:55:20Z2009-12-15T17:12:17Z
<p>Hi Folks,</p>
<p>I have a Java Date object containing date and time information, e.g. 2008-01-01 13:15:00. I want to write a method that cuts off the time information so I only have the date left, e.g. 2008-01-01 00:00:00.</p>
<p>Do you have a tip? I tried doing something like this</p>
<p>(timestamp / (24 * 60 * 60 * 1000)) * (24 * 60 * 60 * 1000)</p>
<p>but I ran into problems with the timezone...</p>
<p>Thanks for your help!</p>
<p>Marco</p>
http://stackoverflow.com/questions/625398/datetime-picker-for-jsf0date+time picker for jsfAndreas Petersson2009-03-09T08:30:03Z2009-12-15T16:56:20Z
<p>Is there any ready-to-use component for JSF that allows to chose the Date + the Time of an event? All components I know only allow for date. adding time manually is tedious. </p>
http://stackoverflow.com/questions/1906655/jquery-ui-calendar-find-out-if-date-given-is-over-2-years-old0jQuery UI, Calendar, find out if date given is over 2 years olddotty2009-12-15T10:56:29Z2009-12-15T11:21:43Z
<p>Hay Guys, I'm using the bog standard Calendar from the jQuery UI system. The result shown (after a user clicks a date) is MM/DD/YYYY.</p>
<p>I want to check that this date is not old than 2 years old</p>
<p>ie</p>
<p>say a user picks</p>
<pre><code>01/27/2004
</code></pre>
<p>this should say that the date is older than 2 years. However, </p>
<pre><code>12/25/2008
</code></pre>
<p>should pass the test.</p>
<p>any ideas?</p>
http://stackoverflow.com/questions/1905551/how-can-i-make-simpledateformat-parse-fail-when-month-is-greater-than-123How can I make SimpleDateFormat.parse() fail when month is greater than 12?Sergio Acosta2009-12-15T06:28:52Z2009-12-15T06:30:17Z
<p>I'm using <code>java.text.SimpleDateFormat</code> to parse strings of the form <code>"yyyyMMdd"</code>.</p>
<p>If I try to parse a string with a month greater than 12, instead of failing, it rolls over to the next year. Full runnable repro:</p>
<pre><code>import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class ParseDateTest {
public static void main(String[] args) throws ParseException {
SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd");
Date result = format.parse("20091504"); // <- should not be a valid date!
System.out.println(result); // prints Thu Mar 04 00:00:00 CST 2010
}
}
</code></pre>
<p>I would rather have a <code>ParseException</code> thrown.</p>
<p>Is there any non-hacky way of forcing the exception to happen?. I mean, I don't want to manually check if the month is greater than 12. That's kind of ridiculous.</p>
<p>Thanks for any suggestion.</p>
<p>NOTE: I already know about Joda Time, but I need this done in plain JDK without external libraries.</p>
http://stackoverflow.com/questions/1641519/reading-date-and-time-from-csv-file-in-matlab1Reading date and time from CSV file in MATLABAP2009-10-29T03:49:53Z2009-12-14T22:22:00Z
<pre><code>datetime, M01, M02, M03, M04, M05, M06
8/15/2009 0:00, 5.8, 7.8, 7.8, 7.3, 0, 7.9
8/15/2009 0:10, 7.1, 8.1, 8.1, 7.7, 0, 8.1
8/15/2009 0:20, 6.8, 7.4, 7.6, 7.1, 0, 7.3
8/15/2009 0:30, 5.6, 6.8, 7.1, 6.6, 0, 6.8
8/15/2009 0:40, 3.9, 6.2, 6.4, 6.2, 0, 6.4
8/15/2009 0:50, 4.6, 5.5, 6.1, 5.8, 0, 5.6
8/15/2009 1:40, 7, 7, 7.2, 6.9, 0, 6.3
</code></pre>
<p>Can you help me to read this CSV file properly so I can convert the first column into a string using <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/datenum.html" rel="nofollow">datenum</a>?
<a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/csvread.html" rel="nofollow">csvread</a> of course does not work. With <a href="http://www.mathworks.de/access/helpdesk/help/techdoc/ref/textscan.html" rel="nofollow">textscan</a> I am lost how to call it , so I do not get errors.
The date and time are in the same column.</p>
<p>Sorry it might sound a dumb question!!!</p>
<p>I know how to read read the above file now. but how do i write it back in a file.txt in the exact same format??
i mean i modified some columns and now need a similar file with same format for column 1 and row 1.
Thanks for the help</p>
http://stackoverflow.com/questions/582831/default-value-to-a-data-parameter-ssrs0Default value to a data parameter , SSRSsan2009-02-24T17:59:33Z2009-12-14T21:00:03Z
<p>In my SSRS report I wanted to default the date parameter with the execution date. I default the date patameter with <code>=DateValue(Globals!ExecutionTime)</code>
or <code>=today</code>. I do have 5 other parameters in my report.</p>
<p>In reporting manager, it makes the page refresh each time when I select another parameter value. Why is that? How do I solve this?</p>
http://stackoverflow.com/questions/1571265/why-is-the-java-date-api-java-util-date-calendar-such-a-mess3Why is the Java date API (java.util.Date, .Calendar) such a mess?sleske2009-10-15T09:34:06Z2009-12-14T15:50:20Z
<p>As most people are painfully aware of by now, the Java API for handling calendar dates (specifically the classes <code>java.util.Date</code> and <code>java.util.Calendar</code>) are a terrible mess.</p>
<p>Off the top of my head:</p>
<ul>
<li>Date is mutable</li>
<li>Date represents a timestamp, not a date</li>
<li>no easy way to convert between date components (day, month, year...) and Date</li>
<li>Calendar is clunky to use, and tries to combine different calendar systems into one class</li>
</ul>
<p><a href="http://www.jroller.com/cpurdy/entry/the%5Fseven%5Fhabits%5Fof%5Fhighly" rel="nofollow">This post</a> sums it up quite well, and <a href="http://jcp.org/en/jsr/detail?id=310" rel="nofollow">JSR-310</a> also expains these problems.</p>
<p>Now my question is: </p>
<p>How did these classes make it into the Java SDK? Most of these problems seem fairly obvious (especially Date being mutable) and should have been easy to avoid. So how did it happen? Time pressure? Or are the problems obvious in retrospect only?</p>
<p>I realize this is not strictly a programming question, but I'd find it interesting to understand how API design could go so wrong. After all, mistakes are always a good learning opportunity (and I'm curious).</p>
http://stackoverflow.com/questions/1459656/how-to-get-current-time-in-yyyy-mm-dd-hhmisec-millisecond-format-in-java1How to get current time in YYYY-MM-DD HH:MI:Sec.Millisecond format in javaSunil Kumar Sahoo2009-09-22T12:00:50Z2009-12-14T12:40:46Z
<p>The below code gives me current time. but it does not tell anything about millisecond </p>
<pre><code>public static String getCurrentTimeStamp() {
SimpleDateFormat sdfDate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//dd/MM/yyyy
Date now = new Date();
String strDate = sdfDate.format(now);
return strDate;
}
</code></pre>
<p>I get date in the format 2009-09-22 16:47:08 (YYYY-MM-DD HH:MI:Sec)</p>
<p>But I want to retrieve current time in the format 2009-09-22 16:47:08.128 ((YYYY-MM-DD HH:MI:Sec.Ms)</p>
<p>where 128 tells the millisecond.</p>
<p>SimpleTextFormat will work fine. Here the lowest unit of time is second. but I want millisecond also.</p>
http://stackoverflow.com/questions/1871780/php-strtotime-is-choking-on-time-zone-string0php strtotime is choking on time zone stringDavid2009-12-09T05:30:30Z2009-12-14T10:20:36Z
<pre><code><?php
echo "Hello?";
$thetime = strtotime("Wed Dec 16 2009 00:00:00 GMT-0500 (Eastern Standard Time)");
var_dump($thetime);
?>
</code></pre>
<p>This code evaluates to "bool(false)"; however, just removing "(Eastern Standard Time)" allows the strtotime function to evaluate correctly. Any ideas why strtotime is choking on the time zone bit of the string?</p>
http://stackoverflow.com/questions/1896193/get-all-the-dates-in-a-week-of-the-selected-date-in-jquery-date-picker1Get all the dates in a week of the selected date in jquery date picker?Coder2009-12-13T11:12:28Z2009-12-13T13:52:04Z
<p>I am creating a task list with number of hours worked to be entered against each task along each day of the week. So if a user clicks on a particular week dates then I need to get all the days' dates into hidden fields. Then I will use them to identify the which hours entry is against which date and insert them into the database. So for this how can I use jquery date picker plugin to get these dates in a week. Please suggest a way as I have been searching for this for long. Thanks in advance </p>
http://stackoverflow.com/questions/1892912/get-years-between-2-dates0get years between 2 dates?unknown (google)2009-12-12T09:47:56Z2009-12-12T14:39:05Z
<p>ive got 2 dates like:</p>
<p>2009-11-11
2002-11-11</p>
<p>and i want to get the years between them '7'. how should i do that? the month and day will always be identical and i dont want to use -. is there a appropiate way for this?</p>