如何获取当前的日期和时间
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何获取当前的日期和时间相关的知识,希望对你有一定的参考价值。
这是php的方法1、获取当前时间方法date()
很简单,这就是获取时间的方法,格式为:date($format, $timestamp),format为格式、timestamp为时间戳--可填参数。
2、获取时间戳方法time()、strtotime()
这两个方法,都可以获取php中unix时间戳,time()为直接获取得到,strtotime($time, $now)为将时间格式转为时间戳,$time为必填。清楚了这个,想了解更多,请继续往下看。
3、 date($format)用法
比如:
echo date('Y-m-d') ,输出结果:2012-03-22
echo date('Y-m-d H:i:s'),输出结果:2012-03-22 23:00:00
echo date('Y-m-d', time()),输出结果:2012-03-22 23:00:00(结果同上,只是多了一个时间戳参数)(时间戳转换为日期格式的方法)
echo date('Y').'年'.date('m').'月'.date('d').'日',输出结果:2012年3月22日 参考技术A 什么语言?
js的话如下:
Js获取当前日期时间及其它操作
var myDate = new
Date();
myDate.getYear();
//获取当前年份(2位)
myDate.getFullYear();
//获取完整的年份(4位,1970-????)
myDate.getMonth();
//获取当前月份(0-11,0代表1月)
myDate.getDate();
//获取当前日(1-31)
myDate.getDay();
//获取当前星期X(0-6,0代表星期天)
myDate.getTime();
//获取当前时间(从1970.1.1开始的毫秒数)
myDate.getHours();
//获取当前小时数(0-23)
myDate.getMinutes();
//获取当前分钟数(0-59)
myDate.getSeconds();
//获取当前秒数(0-59)
myDate.getMilliseconds();
//获取当前毫秒数(0-999)
myDate.toLocaleDateString();
//获取当前日期
var mytime=myDate.toLocaleTimeString();
//获取当前时间
myDate.toLocaleString( );
//获取日期与时间本回答被提问者和网友采纳
如何在 Kotlin 中获取当前的本地日期和时间
【中文标题】如何在 Kotlin 中获取当前的本地日期和时间【英文标题】:How to get current local date and time in Kotlin 【发布时间】:2018-04-10 21:38:23 【问题描述】:如何在 Kotlin 中以当地时间获取当前日期(日月和年)和时间(小时、分钟和秒)?
我尝试通过LocalDateTime.now()
,但它给了我一个错误说Call requires API Level 26 (curr min is 21)
。
如何在 Kotlin 中获取时间和日期?
【问题讨论】:
对于低于 26 的 API 级别,只需将 the ThreeTenABP library 添加到您的项目中,导入org.threeten.bp.LocalDateTime
然后按照您的尝试进行操作:LocalDateTime.now(yourTimeZone)
(我建议指定时区,但如果您不这样做您将获得 JVM 时区设置)。在this question: How to use ThreeTenABP in Android Project 中查看更多信息。
检查此链接以获得您需要的解决方案:***.com/questions/3747490/…
【参考方案1】:
试试这个:
val sdf = SimpleDateFormat("dd/M/yyyy hh:mm:ss")
val currentDate = sdf.format(Date())
System.out.println(" C DATE is "+currentDate)
【讨论】:
Date 大部分已被弃用,并且多年来一直处于逐步淘汰的过程中。我不同意向新学习者推荐它。【参考方案2】:java.util.Calendar.getInstance()
表示使用当前语言环境和时区的当前时间。
您还可以选择导入和使用 Joda-Time 或 forks for Android 之一。
【讨论】:
举个例子就好了。【参考方案3】:当我们的 minSdkVersion Calendar 获取当前日期时间的 utils 方法。
fun Date.toString(format: String, locale: Locale = Locale.getDefault()): String
val formatter = SimpleDateFormat(format, locale)
return formatter.format(this)
fun getCurrentDateTime(): Date
return Calendar.getInstance().time
使用
import ...getCurrentDateTime
import ...toString
...
...
val date = getCurrentDateTime()
val dateInString = date.toString("yyyy/MM/dd HH:mm:ss")
【讨论】:
这应该是公认的答案:简单而干净,我将它实现为一个包级函数(在包级函数上:***.com/questions/38778882/…),以便从任何地方访问它【参考方案4】:您可以从日历实例中获取当前年、月、日等
val c = Calendar.getInstance()
val year = c.get(Calendar.YEAR)
val month = c.get(Calendar.MONTH)
val day = c.get(Calendar.DAY_OF_MONTH)
val hour = c.get(Calendar.HOUR_OF_DAY)
val minute = c.get(Calendar.MINUTE)
如果您需要它作为 LocalDateTime,只需使用上面获得的参数创建它
val myLdt = LocalDateTime.of(year, month, day, ... )
【讨论】:
【参考方案5】:试试这个:
val date = Calendar.getInstance().time
val formatter = SimpleDateFormat.getDateTimeInstance() //or use getDateInstance()
val formatedDate = formatter.format(date)
您也可以使用自己的模式,例如
val sdf = SimpleDateFormat("yyyy.MM.dd")
// 2020.02.02
要获取本地格式,请使用getDateInstance()
、getDateTimeInstance()
或getTimeInstance()
,或使用新的SimpleDateFormat(String template, Locale locale)
,例如Locale.US 用于ASCII 日期。
前三个选项需要 API 级别 29。
【讨论】:
【参考方案6】:要在 Kotlin 中获取当前日期,请执行以下操作:
val dateNow = Calendar.getInstance().time
【讨论】:
【参考方案7】:你可以使用这个功能
fun getCurrentDate():String
val sdf = SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS")
return sdf.format(Date())
【讨论】:
【参考方案8】:查看这些易于使用的 Kotlin 日期格式扩展
fun String.getStringDate(initialFormat: String, requiredFormat: String, locale: Locale = Locale.getDefault()): String
return this.toDate(initialFormat, locale).toString(requiredFormat, locale)
fun String.toDate(format: String, locale: Locale = Locale.getDefault()): Date = SimpleDateFormat(format, locale).parse(this)
fun Date.toString(format: String, locale: Locale = Locale.getDefault()): String
val formatter = SimpleDateFormat(format, locale)
return formatter.format(this)
【讨论】:
【参考方案9】:fun main()
println(LocalDateTime.now().toString()) //2021-10-25T12:03:04.524
println(Calendar.getInstance().time) //Mon Oct 25 12:02:23 GST 2021
有上述选项,输出添加为注释。
【讨论】:
【参考方案10】:fun now(): String
return SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault()).format(Date())
val currentYear = SimpleDateFormat("yyyy",Locale.getDefault()).format(Date())
val currentMonth = SimpleDateFormat("MM",Locale.getDefault()).format(Date())
val currentDay = SimpleDateFormat("dd",Locale.getDefault()).format(Date())
【讨论】:
正如目前所写,您的答案尚不清楚。请edit 添加其他详细信息,以帮助其他人了解这如何解决所提出的问题。你可以找到更多关于如何写好答案的信息in the help center。【参考方案11】:另一种解决方案是在 build.gradle 中更改项目的 api 级别,这将起作用。
【讨论】:
【参考方案12】:我使用它每 20 秒从 API 获取数据
private fun isFetchNeeded(savedAt: Long): Boolean
return savedAt + 20000 < System.currentTimeMillis()
【讨论】:
以上是关于如何获取当前的日期和时间的主要内容,如果未能解决你的问题,请参考以下文章