问题标签 [download-manager]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
2071 浏览

android - Android:如果存在则替换现有的apk

我正在将一个 Android 应用程序下载到路径:/mnt/sdcard/download/App.apk使用DownloadManager类。如果 App.apk 已经存在,则下载失败。如何替换现有的apk?

0 投票
1 回答
3471 浏览

android - 带有POST方法的Android DownloadManager?


我开始使用 android.app.DownloadManager 并遇到了一个问题。
默认情况下,DM 发送 HTTP GET 请求下载文件:

GET http://www.example.com/getfile HTTP/1.1
Cookie:id=sdfsdf;Max-Age=10800000;Path=/
主机:___
连接:Keep-Alive
用户代理:AndroidDownloadManager Paros/3.2.13 内容
-长度:0

但我需要在请求中发送一些数据(例如 json 字符串)
有什么方法可以在 DownloadManager中发送HTTP POST请求

0 投票
2 回答
12534 浏览

android - 手动暂停和恢复的下载管理器

我需要使用暂停和恢复机制来实现下载管理器。

下载大型视频文件或任何其他类型需要此管理器。

我考虑过使用 Android 的 DownloadManager,但据我所知,DownloadManager 不支持用户手动暂停和恢复。

除了自己编写这个组件之外,我还有哪些其他 Android 内置选项?或者也许有人知道如何使用 DownloadManager 手动暂停和恢复?

0 投票
1 回答
4034 浏览

android - Android:使用 DownloadManager 从 Internet 下载文件并将其保存到内存中

我正在使用DownloadManager. 我正在使用以下方法将此文件保存在 sdcard 上:

我想将其保存到内部存储中。怎么做?

0 投票
2 回答
3072 浏览

android - Android:使用下载将数据保存到内存

我正在使用DownloadManager该类从 Android 中的服务器下载文件。我想将此文件存储在设备的内部存储器中。我尝试使用这里.setDestinationInExternalPublicDir(Environment.getExternalStorageDirectory() +"/Android/data/xxx.xxx.xxx/files/")提到的,但它不起作用。如何解决我的问题?

0 投票
1 回答
1681 浏览

android - Android:多次注册一个接收器

我正在使用DownloadManaegr该类从服务器下载一个 Android 应用程序。下载完成时注册广播接收器。当DownloadManager.ACTION_DOWNLOAD_COMPLETE收到意图时,会显示一个条形通知。要安装应用程序,应单击通知。这就是我正在做的事情:

同时下载两个应用时,只显示一个通知-第二个通知-。我错过了第一个。为什么?

0 投票
1 回答
3099 浏览

android - Android:使用 DownloadManager 将下载的数据保存在内存中

我正在使用DownloadManagerAndroid 中的类从服务器下载数据。我想将数据保存在内部存储器(data/data/mypackage/files/...)而不是外部存储器中。这个怎么做?

0 投票
1 回答
2397 浏览

android - Android:无法将使用 DownloadManager 从服务器下载的数据保存到内部存储器

我正在使用 android 中的 DownloadManager 类从服务器下载数据。数据保存到外部存储器。但我想将它们保存到内部存储器中。我做了我的研究,我发现来自这个链接。我尝试了cyngus的第二种解决方案:

它没有用,它给了我错误: java.lang.IllegalArgumentException: Not a file URI: content://com.provider.Downloads/downloads。我做错了什么?

0 投票
2 回答
3037 浏览

android - DownloadManager double download

I have the following problem: Whenever I download a file with the DownloadManager it is downloaded twice (saved in the fashion "filename.extension" and "filename-1.extension"). Here is my code:

The ProjectWrapper _wrapper is just a simple Class that holds data, no logic is done there. The _listener just displays on the callback method a little Toast message. I debugged my app to make shure the download() Method is invoked only once. I hope you can help me find the error.

0 投票
0 回答
743 浏览

android - Android:从“下载”文件夹安装 apk 时出错

我正在使用此处提到的 DownloadManager 类从服务器下载文件。下载的图像可以从android 上的Downloads文件夹中访问。当我从Downloads单击下载的图像时,会显示图像。但是,如果它尝试下载 apk 而不是图像,则无法从Downloads文件夹安装下载的 apk,出现problem parsing the package错误。为什么?

这是我正在做的事情(与上面链接中提到的相同):