Date date type converted to java string

Date date type converted to java string

	Date current_data= new Date();
    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd   HH:mm:ss"); // 格式可以根据需求进行更改
    String dayStr = sdf.format(current_data);

Guess you like

Origin blog.csdn.net/weixin_51966599/article/details/127123981