标签:时间 模式 字符串 time 文本 格式化 end for str
Date(); 根据当前系统时间创建日期对象 ? Date(Long time);根据传入的毫秒值时间创建日期对象
Long getTime(); 获取当前的日期对象的毫秒值时间
String toLocaleString();
SimpleDateFormat(String s); 根据指定模板创建日期格式化对象
String format(Date date); 根据指定格式【模式】格式化日期对象成文本【字符串】
Date Parse(String s); 根据指定格式【模式】解析文本【字符串】成日期
Calendar c = Calendar.getInstance(); 获取日历类对象
int get(int field); 获取指定日历字段信息
void set(int field,int value); 将指定日历字段设置成指定的值
void add(int field,int amount);将指定日历字段增加或减少指定的值
时间日期相关类:Date类,DateFormat类&SimpleDateFormat类,Calendar类
标签:时间 模式 字符串 time 文本 格式化 end for str
原文地址:https://www.cnblogs.com/elvin-j-x/p/12700255.html