本教程操作环境:windows7系统、java10版,DELL G3电脑。
1.概念
DateFormat是日期/时间格式化子类的抽象类,一般使用它的的子类SimpleDateFormat类来实现。
2.方法
SimpleDateFormat(Stringformat) //用来自定义格式,格式的内容通过参数format来设定,例如:yyyy-MM-dd //HH:mm:ss表格年-月-日小时:分:秒。可以依据需要自己定义日期的格式 Dateparse(Stringdate)throwsParseException //把String类型的日期转换为Date类型的日期,注意处理异常 Stringformat(Datedate) //把Date类型的日期转换为String类型的日期
3.参数
String pattern:传递指定的模式
写对应的模式,会把模式替换为对应的日期和时间
"yyyy-MM-dd HH:mm:ss"
注意:
模式中的字母不能更改,连接模式的符号可以改变
yyyy年MM月dd日 HH时mm分ss秒"
4.实例
importjava.text.ParseException; importjava.text.SimpleDateFormat; importjava.util.Date; publicclassDateEx{ publicstaticvoidmain(Stringargs[]) { StringstrDate="2017/04/2519:36:35"; StringdateFormat1="yyyy/MM/ddHH:mm:ss"; //StringdateFormat2="yyyy-MM-ddHH:mm:ss"; //wrongformat,andyyyyMMddHH:mm:ssisalsowrong. DateselfDate=null; SimpleDateFormatsimpDate1=newSimpleDateFormat(dateFormat1); try{ selfDate=simpDate1.parse(strDate); }catch(ParseExceptione){ e.printStackTrace(); } System.out.println(selfDate); System.out.println(simpDate1.format(selfDate)); } }
原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容