如何在 Android 中比较网络服务日期和日历日期?

发布于 2024-10-13 02:49:56 字数 95 浏览 2 评论 0原文

我的网络服务响应采用以下格式:19/2/2011。我想将此网络服务日期与我自己的日历日期进行比较。

有没有答案以及如何突出显示该日期?

My web service response comes in this format: 19/2/2011. I want to compare this web service date to my own calendar date.

Is there any answer and how to highlight that date?

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

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

发布评论

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

评论(2

残月升风 2024-10-20 02:49:56
final Thread t = new Thread(new Runnable() {

        @Override
        public void run() {
             parseData();
        }
    });
t.start();

Thread t1 = new Thread(new Runnable() {

        @Override
        public void run() {
            try {
                t.join();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            //Split strings here and check them 
        }
    });
t1.start(); 
final Thread t = new Thread(new Runnable() {

        @Override
        public void run() {
             parseData();
        }
    });
t.start();

Thread t1 = new Thread(new Runnable() {

        @Override
        public void run() {
            try {
                t.join();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            //Split strings here and check them 
        }
    });
t1.start(); 
如歌彻婉言 2024-10-20 02:49:56

如果您在字符串中都有日期,则可以将其分解为日,时间,年标记,然后可以比较字符串......这将是一种简单而原始的方法来做到这一点

If you have both the date in strings you can break it up into day, time , year token and then can compare the strings....this will be a easy and raw approach to do this

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