How can I convert a String to a JDate Format?
I have a String with the following value
public String dateFrom = "2008-07-22";
I need to set an object's value to the above date field
That object accepts a trade date as JDate
Message message = new Message();
message.setDate(JDate date)
I need to replace JDate with the value of dateFrom
Is this possible? or is there an alternative?