以编程方式从市场下载 apk 到 SD卡
我想下载市场上的 .apk 文件到 SD 卡无需任何用户交互(我的意思是在后台执行此操作,无需启动浏览器或市场应用)?
有特殊的 URL 可以使用吗?
像 http://market.android.com/details?id=
这样的东西总是会启动市场应用程序,不是吗?
I would like to download an .apk file on the market to the sd-card without any user interaction (I mean to do it in background, without launching a browser or the Market Application)?
Is there a special URL to use?
Something like http://market.android.com/details?id=<your_package_name>
always launch the Market Application, doesn't it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能那样做。
但是,您可以使用上面建议的方法从外部源下载 APK 文件。
这将通过 toast 通知用户“开始下载”,并且不会自动安装 apk。
You can't do that.
You can, however, download an APK file from an outside source bu using the method suggested above.
This will notify the user via toast something like "Starting Download" and will not install the apk automatically.
您尝试过
HttpURLConnection
吗?Have you tried
HttpURLConnection
?