I have a problem in java with sql date. I have the value of year-y, month-m,day-d i create new Date(y,m,d) but it says that this constructor is depricated and it returns wrong date, how can i correctly set date, having y,m,d ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
According to the API,
|
|||||||||
|
|
You should use In your case you can also use:
|
|||
|
|
|
Here's how you can convert between the two:
|
|||
|
|
|
|||
|
|
|
Use Calendar.
Then if you have to use dates, then you can do the following -
|
|||
|
|
|
Use the Calendar class:
|
|||||||
|
|
