标签:format 分享 bubuko 转化 nbsp 时间格式 时间 http 使用
format的用法 是将当前时间格式转换为指定格式
场景一:给定毫秒数或者当前系统时间,返回指定时间格式 输入
注意:在第二行和第三行抓化为long类型时要强制性long转换,否则会提示type int is out of range
场景二:给定任意时间格式,返回毫秒数
parse转化为Date类型后可以直接获取毫秒。输入2017-06-28T09:52 返回毫秒
场景三:将给定格式转换为指定格式
输入 06-29-2017 输出 2017/06/29 先parse转化为date类型,再将其format为指定日期类型
SimpleDateFormat.format的简单使用小结
标签:format 分享 bubuko 转化 nbsp 时间格式 时间 http 使用
原文地址:https://www.cnblogs.com/whiskyDY/p/9298077.html