package com.platform.utils; import java.util.Date; import java.text.SimpleDateFormat; public class DateHandle { public static String getNow() { SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//è®¾ç½®æ—¥æœŸæ ¼å¼ return df.format(new Date());// new Date()为获å–当å‰ç³»ç»Ÿæ—¶é—? } }