- public void sysDate(String dateValue){
- //实例化一个Date对象
- Date date = new Date();
- //将该时间模式封装到SimpleDateFormat对象中
- SimpleDateFormat sd = new SimpleDateFormat(dateValue);
- //调用format方法让模式格式化指定的Date对象并赋值给timeValue变量
- String timeValue = sd.format(date);
- System.out.println(timeValue);
- }
复制代码 |