Android 中的日期差异

发布于 2024-12-03 23:39:35 字数 88 浏览 1 评论 0原文

我有两个字符串日期 8-11-2011 和 8-12-2011 。我想计算两个字符串之间的天数。我怎样才能做到这一点?我不想使用 Joda API 。请举例说明。

I have two String date 8-11-2011 and 8-12-2011 . I want to compute days between two string . How can I do that ? I don't want to use Joda API . Please explain with example .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

多情癖 2024-12-10 23:39:36

我不知道你是否有任何直接的API,但你可以这样做,

String s1 = "8-11-2011";
String s2 = "8-12-2011";

String[] arr1 = s1.split("-");
String[] arr2 = s2.split("-");
for(int i = 0; i<arr1.length; i++){
Integer diff = Integer.valuof(arr1[i])-Integer.valueOf(arr2[i])// its just an idea. you may need if conditions here
}

但它不可靠。

I don't know if you have any direct api for this but you can do this,

String s1 = "8-11-2011";
String s2 = "8-12-2011";

String[] arr1 = s1.split("-");
String[] arr2 = s2.split("-");
for(int i = 0; i<arr1.length; i++){
Integer diff = Integer.valuof(arr1[i])-Integer.valueOf(arr2[i])// its just an idea. you may need if conditions here
}

and its not reliable..

梨涡 2024-12-10 23:39:36

请参阅此问题解决方案

please refer to this for the problem solution

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文