在日期中添加时间跨度?
谁能想到一种为日期添加时间跨度的有效方法?
类似于以下内容:
<cfset foo = now() + createTimeSpan(15,12,30,30)>
基于 .NET 的 CFML 引擎中的 IIRC 我可以简单地使用 date.add(timespan),但我现在不记得等效的 Java 快捷方式。
提前致谢。
Can anyone think of an efficient way of adding a timespan to a date?
Something like the following:
<cfset foo = now() + createTimeSpan(15,12,30,30)>
IIRC in a .NET-based CFML engine I could simply use date.add(timespan), but I can't remember the equivalent Java shortcut right now.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您实际上在这里问什么?一方面,您将其标记为 CF 问题并使用 CFML 来回答您自己的问题;然后你开始询问 Java 捷径?
如果您想知道如何在 CFML 中执行此操作,那么您的代码示例就是您如何在 CFML 中执行此操作。
如果你想知道如何将 CF 时间跨度值(这只是天数的数字表示)添加到 Java 日期,那么它似乎有点棘手,因为我可以找到的 Calendar 方法都添加了组成部分的时间跨度,而不是整个时间跨度。
这段代码可能演示了您想要的所有答案(除了如何使用 Java 日期/日历一次性完成它):
这是否回答了您实际的问题?
What actually are you asking here? On one hand you've tagged it as a CF question and use CFML which answers your own question; then you start asking about a Java short cut?
If you want to know how to do it in CFML, then your code sample is how you do it in CFML.
If you want to know how to add a CF timespan value (which is just a numeric representation of a number of days) to a Java date, then it seems to be slightly trickier, because the Calendar methods I can find all add the component parts of the timespan, not the whole timespan.
This code demonstrates possibly all the answers you're after (except how to do it in one hit with a Java date/calendar):
Does that answer whatever your question actually was?