import java.text.SimpleDateFormat; /** * 日期时间格式化 */ public class test { public static void main(String[] args){ Object date = new java.util.Date(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String str= sdf.format(date); System.out.println(str); } }