1.当前时间转换为时间戳:new data().getTime();
2.取String类型特定的时间转换时间戳:
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
Date f=format.parse(传过来的时间);//穿过来的时间转换为Date类型
Long long=(Long)f.getTime();//转化为Long类型的时间戳
原文:https://www.cnblogs.com/bpdspz/p/13504157.html