Java中⽇期时间格式转换为毫秒数1、输⼊⽇期,转化为毫秒数:⽤calendar⽅法(Time)
代码:
string转date的方法public static void main(String[] args){
Calendar calendar = Instance();
calendar.set(2017,6,27,15,9,0);
System.out.TimeInMillis());
}
2、输⼊⽇期,转化为毫秒数:⽤Date ⽅法()
代码:
public static void main(String[] args) throws ParseException {
/**
* 先⽤SimpleDateFormat.parse() ⽅法将⽇期字符串转化为Date格式
* 通过Time()⽅法,将其转化为毫秒数
*/
String date ="2017-06-27 15-20-00";
SimpleDateFormat simpleDateFormat =new SimpleDateFormat("yyyy-MM-dd HH-mm-ss");//24⼩时制
// SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd hh-mm-ss");//12⼩时制
long time = simpleDateFormat.parse(date).getTime();
System.out.println(time);
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论