热门IT资讯网

android时间格式的转化,String,Date,long

发表于:2024-11-30 作者:热门IT资讯网编辑
编辑最后更新 2024年11月30日,long time=System.currentTimeMillis();System.out.println(time);SimpleDateFormat format=new SimpleDate

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);


0