| Author |
Making String to java.util.Date
|
Farakh khan
Ranch Hand
Joined: Mar 22, 2008
Posts: 672
|
|
I am getting date from HTML form i.e.
String days=req.getParameter("days");
String months=req.getParameter("months");
String year=req.getParameter("year");
String job_start=days+"-"+months+"-"+year;
String job_end=days1+"-"+months1+"-"+year1;
How can I convert and compare with todays date?
My Code:
=========
What I did is; certainly its wrong aproach as:
1. I am trying to write String instead of java.util.Date
2. I am getting today date with oracle and don't know as to how can in get from Java
|
 |
Leandro Coutinho
Ranch Hand
Joined: Mar 04, 2009
Posts: 415
|
|
Hi!
java.util.Date has many deprecated methods, so I advise you to use java.util.GregorianCalendar.
Take a look in the following link to understand the compare() method: http://java.sun.com/javase/6/docs/api/java/util/Calendar.html#compareTo%28java.util.Calendar%29
Also notice that if you have the dates represented in String, you can compare them using the equals() method.
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19232
|
|
|
Or check out DateFormat and its most-often used subclass SimpleDateFormat.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
Farakh khan
Ranch Hand
Joined: Mar 22, 2008
Posts: 672
|
|
|
Thanks from the bottom of my heart
|
 |
 |
|
|
subject: Making String to java.util.Date
|
|
|