Hi,
I'm not sure whether you can set in Regional Setting, but as you see,
it will defer based on different computer settings. So, why don't you
use the utility provided by JAVA to format your date output, so you
can see the same result even on different computer.
Use class SimpleDateFormat is a good choice.
SimpleDateFormat df = new SimpleDateFormat("EEE MMM dd HH:mm:ss
yyyy");
df.format("new Date()");
Harry
On May 9, 2:33 pm, krisl...@gmail.com wrote:
> Hi all,
>
[quoted text clipped - 12 lines]
> Thank you for your help,
> xtanto