嗨,我需要将毫秒转换为日期。MYSQL 也应该可以接受日期。
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.US);
GregorianCalendar calendar = new GregorianCalendar(TimeZone.getTimeZone("US/Central"));
calendar.setTimeInMillis(System.currentTimeMillis());
System.out.println("GregorianCalendar -" + sdf.format(calendar.getTime()));
我尝试了这个例子,但在这里“sdf.format(calendar.getTime()”这个方法给出了以下格式的字符串。“yyyy-MM-dd HH:mm:ss”
但我也希望 Date 对象采用上述格式(yyyy-MM-dd HH:mm:ss)。
那么如何将其转换为日期格式。
请帮我解决这个...
提前谢谢... :)