T E Schmitz wrote:
[EMAIL PROTECTED] wrote:
I tried :
  l = new java.lang.Long (millis);
  d = new java.util.Date(l);

This also results in a IllegalArgumentException when creating the Date.

What an idiot! It's got to be
d = new java.util.Date(l.longValue());
--


Regards/Gruß,

Tarlika Elisabeth Schmitz

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to