All, how can I can get a date object like this:
2009-01-09T05:00:00.000Z
I tried this:
Date dd = new Date();
DateFormat df = new SimpleDateFormat("yyyy-MM-dd:HH:mm:ss.SSSZ");
System.out.println(df.format(dd));
but i get this as result:
2009-01-09:10:38:03.156-0500
Any ideas?