Android:是否有一个组件可以将文件与网络服务器上的文件同步?
当然我可以自己写,但我想知道是否有人知道开源 android 组件/示例源代码,它将:
- 获取远程 URL (http://www.example.com/foo.txt) 并本地文件名 (/sdcard/ben/foo.txt)
- 如果本地文件存在,请通过执行 HEAD 请求来检查远程版本的日期/文件大小等,
- 如果丢失或过期则下载文件
干杯!
Of course I could write it myself, but I'm wondering if anyone knows of an open-source android component / example source code that will:
- Take a remote URL (http://www.example.com/foo.txt) and a local filename (/sdcard/ben/foo.txt)
- If the local file exists, check date/filesize etc, against the remote version by doing a HEAD request
- Download the file if missing or out of date
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
android dropbox 应用程序可以做到这一点,但据我所知,没有任何组件可以做到这一点。也许您可以通过意图集成 dropbox。否则你将不得不自己动手。
The android dropbox app does that, but afaik there is no component that does it. Maybe you can integrate dropbox via an intent. Otherwise you will have to roll your own.