gpt4 book ai didi

java - 通过 Service 更新 Android 中的新 RSS 提要

转载 作者:行者123 更新时间:2023-12-01 10:33:28 25 4
gpt4 key购买 nike

我正在开发一个小项目,我想将 RSS 提要插入数据库,所有这些都将在后台服务中执行,我如何继续通过服务查找新的 RSS 提要并将其插入数据库?

最佳答案

你应该做什么,首先引用报警服务。在这里我设置了一些与此相关的代码。

Setting Alarm manager let say for every 30 sec. that continuously call your web service that fetch your RSS data from any url.

Intent intent = new Intent(DashboardScreen.this, xxx.class);
PendingIntent pintent = PendingIntent.getService(DashboardScreen.this, 0, intent, 0);
AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);
alarm.setRepeating(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), 30*1000, pintent);

在你的 xxx 类中,使用 asyncTask 调用你的 Web 服务,并将 RSS 数据保存到 onPostExecute() 内的数据库中。应用这个并让我知道是否有任何查询。接受它是否适合你的情况。

关于java - 通过 Service 更新 Android 中的新 RSS 提要,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34960031/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com