You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
library_manage_system/src/javabean/DateTime.java

17 lines
301 B

package javabean;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateTime {
public static String show() {
SimpleDateFormat myFmt2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");// 等价于now.toLocaleString()
Date now = new Date();
return myFmt2.format(now);
}
}