如何在后台使用服务下载文件?
我正在制作一个 Android 库应用程序,可以下载和显示特殊文件。现在我需要编写一个在后台下载文件的服务!有服务样品吗?
我想将文件保存在SD中,因为用户可以更新应用程序并且不应该错过下载的文件。
如果您对此有建议或意见,请写信给我。
I'm making a android library app that can download and show special files. now I need to write a service that download file in background! are there samples for services?
and I want to save files in SD, because users can update app and don't should miss downloaded files.
If you have a suggest or opinion for this, write me, please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
权限:要写入外部存储,您需要添加此权限:
注意:您可以使用上面的代码下载文件并保存在SD卡中。您可以使用 AsysnTask 或
thread
在后台运行此代码。Permission: To write to external storage, you need to add this permission:
Note: you can use above code to get the file downloaded and saved in the SD card. You can run this code in background using AsysnTask or
thread
.这是另一个示例:
This is another sample: