I am using following code to get date in \"dd/MM/yyyy HH:mm:ss.SS\" format.
import java.text.SimpleDateFormat;
import java.util.Calendar;
import
You can't - because you're calling Date.toString()
which will always include the system time zone if that's in the default date format for the default locale. The Date
value itself has no concept of a format. If you want to format it in a particular way, use SimpleDateFormat.format()
... using Date.toString()
is almost always a bad idea.