标签:android学习心得
long time=System.currentTimeMillis();
System.out.println(time);
SimpleDateFormat format=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
java.util.Date d1=new Date(time);
String now=format.format(d1);
System.out.println(now);
long t = 0;
try {
java.util.Date d2 = format.parse(now);
t = d2.getTime();
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println(t);
本文出自 “8397832” 博客,请务必保留此出处http://8407832.blog.51cto.com/8397832/1421548
android时间格式的转化,String,Date,long,布布扣,bubuko.com
android时间格式的转化,String,Date,long
标签:android学习心得
原文地址:http://8407832.blog.51cto.com/8397832/1421548