Questions tagged «datetime»

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

3
使用新的日期时间API格式化日期
我正在使用新的日期时间API,但是在运行时: public class Test { public static void main(String[] args){ String dateFormatted = LocalDate.now() .format(DateTimeFormatter .ofPattern("yyyy-MM-dd HH:mm:ss")); System.out.println(dateFormatted); } } 它抛出: Exception in thread "main" java.time.temporal.UnsupportedTemporalTypeException: Unsupported field: HourOfDay at java.time.LocalDate.get0(LocalDate.java:680) at java.time.LocalDate.getLong(LocalDate.java:659) at java.time.format.DateTimePrintContext.getValue(DateTimePrintContext.java:298) at java.time.format.DateTimeFormatterBuilder$NumberPrinterParser.format(DateTimeFormatterBuilder.java:2543) at java.time.format.DateTimeFormatterBuilder$CompositePrinterParser.format(DateTimeFormatterBuilder.java:2182) at java.time.format.DateTimeFormatter.formatTo(DateTimeFormatter.java:1745) at java.time.format.DateTimeFormatter.format(DateTimeFormatter.java:1719) at java.time.LocalDate.format(LocalDate.java:1685) at Test.main(Test.java:23) 查看LocalDate类的源代码时,我看到: private int …

6
将时间戳添加到文件名
我多次遇到此问题,希望在同一目录中拥有同一文件的多个版本。我一直在使用C#进行操作的方法是在文件名中添加一个像这样的时间戳DateTime.Now.ToString().Replace('/', '-').Replace(':', '.')。有一个更好的方法吗?
117 c#  .net  file  datetime  file-io 

17
如何解析JSON以在JavaScript中接收Date对象?
我有以下一段JSON: \/Date(1293034567877)\/ .NET代码的结果: var obj = DateTime.Now; var serializer = new System.Web.Script.Serialization.JavaScriptSerializer(); serializer.Serialize(obj).Dump(); 现在我面临的问题是如何在JavaScript中从中创建Date对象。我所能找到的就是令人难以置信的正则表达式解决方案(许多包含错误)。 很难相信没有完美的解决方案,因为这都是JavaScrip中的全部,我的意思是JavaScript代码试图读取应该是JavaScript代码的JSON(JavaScript对象表示法),目前看来,这并不是因为JavaScript无法在这里做好。 我还看到了一些我无法使用的评估解决方案(除了被指出为安全威胁之外)。 真的没有办法优雅地做到这一点吗? 没有真实答案的类似问题: 如何使用GWT解析ASP.NET JSON日期格式

9
在Python中减去两次
我有两个datetime.time值,exit并且enter想做类似的事情: duration = exit - enter 但是,我收到此错误: TypeError:-:“ datetime.time”和“ datetime.time”的不受支持的操作数类型 如何正确执行此操作?一种可能的解决方案是将time变量转换为datetime变量,然后进行推导,但是我敢肯定你们必须有一种更好,更清洁的方法。
117 python  datetime 


13
如何在SQL Server中获取上个月的第一天和最后一天(带有时间戳)
我找不到带时间戳的上个月的第一天和最后一天的解决方案。希望这对其他人有帮助。如果已经有解决此问题的方法,我深表歉意。 这是解决方案。 SELECT DATEADD(month, DATEDIFF(month, -1, getdate()) - 2, 0) as FirtDayPreviousMonthWithTimeStamp, DATEADD(ss, -1, DATEADD(month, DATEDIFF(month, 0, getdate()), 0)) as LastDayPreviousMonthWithTimeStamp 这将返回以下内容 currentdate = '2012-7-31' 结果: 2012-06-01 00:00:00.000 2012-06-30 23:59:59.000 这将返回以下内容 currentdate = '2012-1-1' 结果: 2011-12-01 00:00:00.000 2011-12-31 23:59:59.000


9
如何将DateTime.TryParse与Nullable <DateTime>结合使用?
我想使用DateTime.TryParse方法将字符串的datetime值转换为Nullable。但是当我尝试这个: DateTime? d; bool success = DateTime.TryParse("some date text", out (DateTime)d); 编译器告诉我 'out'参数未归类为变量 不知道我需要在这里做什么。我也尝试过: out (DateTime)d.Value 那也不行。有任何想法吗?
114 c#  datetime  nullable 


4
AngularJS-在控制器中转换日期
有人可以建议我如何将日期从这种1387843200000格式转换为24/12/2013 控制器中的日期吗? 仅供参考,我的日期将以这种方式存储,input type="date"并且完全不填充绑定到带有字段的编辑表单时。 #Plunker演示在这里。 编辑Ctrl app.controller("EditCtrl", [ "$scope", "$filter", "db" function ($scope, $filter, db){ // this gets me an item object var item = db.readItem(); // item date = 1387843200000 // this returns undefined item.date = $filter('date')(date[ item.date, "dd/MM/yyyy"]); }]); Edit.html-模板 &lt;form name="editForm" class="form-validate"&gt; &lt;div class="form-group"&gt; &lt;label for="date"&gt;Event date.&lt;/label&gt; …

9
解析日期字符串并更改格式
Наэтотвопросестьответына 堆栈溢出нарусском:Преобразованиедатымеждустроковымипредставлениями 我有一个日期字符串,格式为“ 2010年2月15日星期一”。我想将格式更改为“ 15/02/2010”。我怎样才能做到这一点?

13
在Rails 3或Ruby中将持续时间转换为小时:分钟:秒(或类似)
我感觉有一种简单/内置的方法可以执行此操作,但我找不到它。 我有一个以整数表示的持续时间(以秒为单位),我想以一种友好的格式显示它。 例如3600将显示为“ 01:00:00”或“ 1小时”或其他内容。 我可以做到这一点,time_ago_in_words(Time.zone.now+3600)但是感觉有点像破解,没有理由在当前时间添加/减去仅用于格式化此值。有duration_in_words()东西吗? 谢谢

10
PHP按包含日期的元素对多维数组进行排序
我有一个数组,如: Array ( [0] =&gt; Array ( [id] =&gt; 2 [type] =&gt; comment [text] =&gt; hey [datetime] =&gt; 2010-05-15 11:29:45 ) [1] =&gt; Array ( [id] =&gt; 3 [type] =&gt; status [text] =&gt; oi [datetime] =&gt; 2010-05-26 15:59:53 ) [2] =&gt; Array ( [id] =&gt; 4 [type] =&gt; status [text] …
113 php  datetime  arrays  sorting 


11
使用python pandas合并日期和时间列
我有一个带有以下各栏的熊猫数据框; Date Time 01-06-2013 23:00:00 02-06-2013 01:00:00 02-06-2013 21:00:00 02-06-2013 22:00:00 02-06-2013 23:00:00 03-06-2013 01:00:00 03-06-2013 21:00:00 03-06-2013 22:00:00 03-06-2013 23:00:00 04-06-2013 01:00:00 如何合并data ['Date']和data ['Time']以获得以下内容?有办法做到pd.to_datetime吗? Date 01-06-2013 23:00:00 02-06-2013 01:00:00 02-06-2013 21:00:00 02-06-2013 22:00:00 02-06-2013 23:00:00 03-06-2013 01:00:00 03-06-2013 21:00:00 03-06-2013 22:00:00 03-06-2013 23:00:00 04-06-2013 01:00:00

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.