Android时间间隔百分比

发布于 2024-12-11 18:08:16 字数 210 浏览 0 评论 0原文

我有三个日期对象 - startDate、endDate、currentDate。它们代表时间间隔的开始/结束以及当前日期。我想知道如果 currentDate 位于 startDate 和 endDate 之间,currentDate 代表 (x) 的百分比。 在此处输入图像描述

谢谢!

I have three date objects - startDate, endDate, currentDate. They represent the start/end of a time interval, and the curent date. I would like to know what percentage does the currentDate represents (x), if currentDate is bewtween the startDate and endDate.
enter image description here

Thank you!

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

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

发布评论

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

评论(1

沧桑㈠ 2024-12-18 18:08:16

您可以通过在每个日期使用 .getTime() 来计算百分比:

double start = (double)StartDate.getTime();
double end = (double)EndDate.getTime();
double cur = (double)CurrentDate.getTime();

double percent = ((cur - start) / (end - start)) * 100f;

编辑:添加 * 100f 因为它是百分比,而不是小数...

You can calculate the percentage by using .getTime() on each date:

double start = (double)StartDate.getTime();
double end = (double)EndDate.getTime();
double cur = (double)CurrentDate.getTime();

double percent = ((cur - start) / (end - start)) * 100f;

EDIT: added * 100f due to it being a percentage, not decimal...

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