Tagged Questions
1
vote
1answer
73 views
How to correctly use setDate?
I have table with column "date" and type Date in format: "2011-09-06"
and i want to execute query:
select * from tvprograms where date=?
And I try this:
Date startDate;
java.util.Date date;
...
0
votes
2answers
552 views
Hour difference between Linux and Windows from Java date.getHour()
I have some java code that parses a string and creates a Date object. On Linux, everything works fine, but on Windows it continuously starts at 19:00:00 rather than 00:00:00. Here is the code:
...
-3
votes
1answer
217 views
java datechooser how to get date
DateFormat dateformatYYYYMMDD = new SimpleDateFormat("yyyyMMdd");
String nowYYYYMMDD = new String( dateformatYYYYMMDD.format( dateChooser.getDate()) );
...