Hi!
I have quite stupid problem... I don't know how to take a date from Java. I know I should use Date class for example:
So if anybody have some solution please response my thread.
Thanks for any help
Best regards
Bartec
I have quite stupid problem... I don't know how to take a date from Java. I know I should use Date class for example:
Code:
......
Date dd = new Date();
dd.getDate(); //<--------- this is not available.
dd.getTime(); //<----------this is available but the
// I receive quite stupid format
//Works only this (example):
JOptionPane.showMessageDialog(null, new Date().toString(),
"Test",JOptionPane.INFORMATION_MESSAGE);
So if anybody have some solution please response my thread.
Thanks for any help
Best regards
Bartec