时间戳转换年月日
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间戳转换年月日相关的知识,希望对你有一定的参考价值。
参考技术A function timestampToTime(timestamp)var date =new Date(timestamp);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
Y = date.getFullYear() +'年';
M = (date.getMonth() +1 <10 ?'0' + (date.getMonth() +1) : date.getMonth() +1) +'月';
D = date.getDate() +'日';
h = date.getHours() +':';
m = date.getMinutes() +':';
s = date.getSeconds();
return Y +M +D;//时分秒可以根据自己的需求加上
Spark 将时间戳转换成年月格式
通过spark-sql,将查询timstamp字段时间戳转换成日期格式:
val simpleDateFormat = new SimpleDateFormat("yyyyMM")
spark.udf.register("changDate",(x:Long)=> simpleDateFormat.format(new Date(x * 1000L)))
val df: DataFrame = spark.sql("select mid,uid,score,changDate(timstamp) from Ratings")
df.show()
changeDate为函数名。
以上是关于时间戳转换年月日的主要内容,如果未能解决你的问题,请参考以下文章