1. android开发,long型时间怎么取出对应的年月日
long类型的时间说明获取得到的是时间戳,具体转换可参考以下代码
java">//mill为你龙类型的时间戳
Datedate=newDate(mill);
Stringstrs="";
try{
//yyyy表示年MM表示月dd表示日
//yyyy-MM-dd是日期的格式,比如2015-12-12如果你要得到2015年12月12日就换成yyyy年MM月dd日
SimpleDateFormatsdf=newSimpleDateFormat("yyyy-MM-dd");
//进行格式化
strs=sdf.format(date);
System.out.println(strs);
}catch(Exceptione){
e.printStackTrace();
}
2. android studio 时间戳s是string类型的吗
可以存储为String类型,通常时间戳不是String类型,而是long类型
Android Studio获取本地的时间戳通过下面方法:System.currentTimeMillis();
获取服务器的时间戳,通常返回的是一个字符串类型,即String,可以将其转换long类型使用对于方法:Long.parseLong(Strings)
3. android 将时间戳转为代表"距现在多久之前"的字符串
publicstaticfinalvoidtestDate(){
//比如现在时间:2016/5/3011:45:5
Datenow=newDate(1464579905000l);
//上次时间:2016/5/2811:44:15
Dateold=newDate(1464407055000l);
System.out.println(String.format("距现在%s之前",testPassedTime(now.getTime(),old.getTime())));
}
privatestaticfinallongMINUTE_SECONDS=60;//1分钟多少秒
privatestaticfinallongHOUR_SECONDS=MINUTE_SECONDS*60;
privatestaticfinallongDAY_SECONDS=HOUR_SECONDS*24;
privatestaticfinallongYEAR_SECONDS=DAY_SECONDS*365;
(longnowMilliseconds,longoldMilliseconds){
longpassed=(nowMilliseconds-oldMilliseconds)/1000;//转为秒
if(passed>YEAR_SECONDS){
returnpassed/YEAR_SECONDS+"年";
}elseif(passed>DAY_SECONDS){
returnpassed/DAY_SECONDS+"天";
}elseif(passed>HOUR_SECONDS){
returnpassed/HOUR_SECONDS+"小时";
}elseif(passed>MINUTE_SECONDS){
returnpassed/MINUTE_SECONDS+"分钟";
}else{
returnpassed+"秒";
}
}