Questions tagged «datetime»

许多编程语言中的DateTime对象描述日期和一天中的时间。它可以表示即时时间,也可以表示日历上的位置,具体取决于使用它的上下文和特定的实现。此标签可用于所有与日期和时间有关的问题。


7
无法比较幼稚和知道的datetime.now()<= Challenge.datetime_end
我正在尝试使用比较运算符将当前日期和时间与模型中指定的日期和时间进行比较: if challenge.datetime_start &lt;= datetime.now() &lt;= challenge.datetime_end: 脚本错误如下: TypeError: can't compare offset-naive and offset-aware datetimes 这些模型如下所示: class Fundraising_Challenge(models.Model): name = models.CharField(max_length=100) datetime_start = models.DateTimeField() datetime_end = models.DateTimeField() 我也有使用区域设置日期和时间的django。 我找不到的是django用于DateTimeField()的格式。天真还是知道?以及如何获取datetime.now()来识别语言环境datetime?


4
如何使用strftime来计算期间(AM / PM)?
具体来说,我有简化此代码: from datetime import datetime date_string = '2009-11-29 03:17 PM' format = '%Y-%m-%d %H:%M %p' my_date = datetime.strptime(date_string, format) # This prints '2009-11-29 03:17 AM' print my_date.strftime(format) 是什么赋予了?Python解析日期时是否只是忽略句点说明符,还是我做一些愚蠢的事情?


9
解析LocalDateTime(Java 8)时,无法从TemporalAccessor获取LocalDateTime
我只是想将Java 8中的日期字符串转换为DateTime对象。运行以下行时: DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd"); LocalDateTime dt = LocalDateTime.parse("20140218", formatter); 我收到以下错误: Exception in thread "main" java.time.format.DateTimeParseException: Text '20140218' could not be parsed: Unable to obtain LocalDateTime from TemporalAccessor: {},ISO resolved to 2014-02-18 of type java.time.format.Parsed at java.time.format.DateTimeFormatter.createError(DateTimeFormatter.java:1918) at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1853) at java.time.LocalDateTime.parse(LocalDateTime.java:492) 语法与此处建议的语法相同,但有例外。我正在使用JDK-8u25。

13
按日期对ArrayList中的对象进行排序?
我发现的每个示例都是按字母顺序进行的,而我需要按日期对元素进行排序。 我的ArrayList包含其数据成员之一是DateTime对象的对象。在DateTime上,我可以调用以下函数: lt() // less-than lteq() // less-than-or-equal-to 因此,可以比较一下: if(myList.get(i).lt(myList.get(j))){ // ... } 我应该在if块内做什么?
149 java  sorting  datetime 

10
如何在MySQL中获取当前日期和时间?
是否可以在手动查询中使用诸如DATETIME之类的值或命令来插入当前日期和时间? INSERT INTO servers ( server_name, online_status, exchange, disk_space, network_shares ) VALUES( 'm1', 'ONLINE', 'ONLINE', '100GB', 'ONLINE' 'DATETIME' ) 末尾引用的DATETIME值是我要添加当前日期和时间的位置。
148 mysql  sql  datetime 

10
查找当前时间是否在某个时间范围内
使用.NET 3.5 我想确定当前时间是否在某个时间范围内。 到目前为止,我有currentime: DateTime currentTime = new DateTime(); currentTime.TimeOfDay; 我正在研究如何转换和比较时间范围。这行得通吗? if (Convert.ToDateTime("11:59") &lt;= currentTime.TimeOfDay &amp;&amp; Convert.ToDateTime("13:01") &gt;= currentTime.TimeOfDay) { //match found } UPDATE1:谢谢大家的建议。我对TimeSpan函数不熟悉。
146 c#  datetime  timespan 


10
计算当月的最后一天
我在计算本月下一个最后一天何时发送预定的通知时遇到问题。 这是我的代码: RecurrenceFrequency recurrenceFrequency = notification.getRecurrenceFrequency(); Calendar nextNotifTime = Calendar.getInstance(); 这是导致问题的线,我相信: nextNotifTime.add(recurrenceFrequency.getRecurrencePeriod(), recurrenceFrequency.getRecurrenceOffset()); 如何使用日历正确设置下个月的通知的最后一天?
144 java  datetime  calendar 

18
如何仅使用JavaScript获取当前时间
如何获取JavaScript中的当前时间并将其用于时间选择器? 我尝试var x = Date()并得到: 2012年5月15日星期二05:45:40 GMT-0500 但是例如,我只需要当前时间, 05:45 如何将其分配给变量?

14
如何仅从日期时间C#中获取时间
已关闭。这个问题需要更加集中。它当前不接受答案。 想改善这个问题吗?更新问题,使其仅通过编辑此帖子来关注一个问题。 12个月前关闭。 改善这个问题 假设我的值为6/22/2009 10:00:00 AM。我要如何从该日期开始仅上午10:00。
144 c#  datetime  time 


9
从DateTime减去天
我的C#程序中有以下代码。 DateTime dateForButton = DateTime.Now; dateForButton = dateForButton.AddDays(-1); // ERROR: un-representable DateTime 每当我运行它时,都会出现以下错误: 相加或相减的值将导致无法表示的DateTime。 参数名称:值 我以前从未见过此错误消息,也不知道为什么会看到它。从到目前为止我得到的答案中,我可以认为我可以在加法运算中使用-1来减去天,但是正如我的问题所示,我尝试做的并非如此。
142 c#  datetime 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.