The download-manager tag has no wiki summary.
0
votes
0answers
38 views
C# downloading from Web
I am trying to develop a TurboIt downloader with C#.
The program does the following correctly.
Given the file URL it sends initial web request.
Based on the response it sends regular download ...
-3
votes
0answers
35 views
What algorithms can be used to develope a download manager software as a project? [closed]
I want to create a download manager software for my minor project. Now im preparing documentation of development of this project. So, I want to know is that any algorithms that i should/can use in my ...
0
votes
0answers
39 views
why download manager skip and repeat some requests
A piece of our project, there is a download class which download many files sometime near 286 smallfiles using download manager we face such a problem in download manager class and its function there ...
-5
votes
0answers
30 views
why this code is showing not correct download speed>? [closed]
class Download extends Observable implements Runnable
{
private static final int MAX_BUFFER_SIZE=1024;
public static final String ...
0
votes
0answers
34 views
Why do I get conflicts when Iam downloading the same files in Android by using Download Manager?
When Iam downloading the mp4 video Files using Download Manager, its getting downloaded. After Downloading process is completed i could be able to play the mp4 video Files.
In my app, I given the ...
-1
votes
0answers
21 views
Download Manager Behaviour?
I am using Download manager and register receiver callback for following Action :
DownloadManager.ACTION_DOWNLOAD_COMPLETE to know if download complete and
ConnectivityManager.CONNECTIVITY_ACTION to ...
0
votes
0answers
25 views
Platform independent download manager for MVC
I know download manager questions have been asked a few times, and there quite good articles about download managers. But I could find any which work in all platforms.
The scenario I need to ...
0
votes
1answer
79 views
App not receiving android.intent.action.DOWNLOAD_COMPLETE intent
I am writing a simple app that would get notified when any download via the Download manager is completed on the android device. I have created a Broadcast Receiver for the same and set the intent ...
0
votes
2answers
96 views
java.lang.NoSuchMethodError: android.app.DownloadManager$Request.setNotificationVisibility
Trying to use DownloadManager like so
DownloadManager.Request request = new DownloadManager.Request(uri)
.setAllowedNetworkTypes(DownloadManager.Request.NETWORK_MOBILE)
...
0
votes
0answers
67 views
How can I download a video in my download manager java project?
I am writing a download manager using java, but this program only downloads pdf,jpeg, png, zip and cannot download a video .mp3, .flv or in another format video.How can I download a video?Here is my ...
0
votes
2answers
78 views
How can I write test driven java class for download manager?
I am developing a Download Manager using with UP Design.In this Elaboration iteration, my main use case:download the file.Here is the Download.java
public class Download implements Runnable {
// ...
0
votes
0answers
47 views
Download file to external public storage without knowing the filename
My HTTP-server allows downloading files with a 'dynamic' url: e.g. http://myserver.com/query?id=12345 which will give me my_song.mp3.
The filename is indicated in the content-disposition header.
...
1
vote
1answer
48 views
DownloadManger for Android 2.2
Android offer a DownloadManager from API 9 onwards and documentation says
The download manager will conduct the download in the background,
taking care of HTTP interactions and retrying ...
2
votes
1answer
130 views
PHP: How to shorten url + get data from database
Im trying to make automatic download page url shortener for my file upload script.
Example of part that inserts data to database:
function RandomString($length) {
$key = "";
$keys = ...
0
votes
0answers
43 views
Display File Extensions in downloads folder using android download list code by grep code
I am using DownloadList code by grepcode in my project. Everything is working fine, i need to add a small feature. i.e. when i select to display all the downloads available i want to display the file ...
0
votes
0answers
99 views
Android DownloadManager save file with original name
I'm just working on the Android DownloadManager and I would like to save the file with the original file name, provided by the server.
My current code:
...
2
votes
1answer
202 views
Android DownloadManager “Impossible to open file”
I'm using DownloadManager to download a file from a webService. The download end successfuly, but when I try to open the new file in the "download" folder I've got this error "Impossible to open file" ...
0
votes
2answers
385 views
How to Show download progress in progress bar in Android?
I am using .net web services and I am able to download the file in sd card, But I want to show progress bar when particular file start download and complete and then I want to show options like view ...
0
votes
1answer
38 views
How can I increase the speed of my download manager program?
I am writing a download manager program.And In my program the urls are downloaded in a normal speed.How can I increase the speed of the downloads?Is it about HTTP 1.1 or is there an algorithm to do ...
0
votes
1answer
281 views
Android downloading file through DownloadManager not working correctly
I'm trying to download files thru DownloadManager, it works perfectly on most of the phones (Nexus family, S3, etc) but on Galaxy S2 for some reason the download works, but the name of the file is set ...
0
votes
0answers
128 views
How to download images, pdf, doc using web services? [closed]
I have simple list where I have some folders and files(.pdf, images(.jpg/png/tif), doc, excel). these files are coming through server using .net web services. I am using ksoap. I am able to view ...
0
votes
0answers
50 views
android downloadManager issue
I use downloadManager to download apk file after versions 2.3. I can use setDestinationInExternalPublicDir to set when there is SD card.
If there is no SD card, I do not need to set this value. It ...
4
votes
2answers
80 views
DownloadManager VS Own download implementation?
I'm building an application in which I need to download large files.
The application needs to support:
-Download big files (off course..)
-Resume broken downloads
-Be notified about download progress
...
0
votes
1answer
107 views
Android DownloadManager - Is there a way to be notified when a user deletes a download from the UI?
I cannot find a way to be notified when a user cancels a download in the system's DownloadManager UI:
I know that it is possible to set a BroadcastReceiver for downloads "completed" or "clicked", ...
0
votes
2answers
194 views
Is it possible that two BroadcastReceiver from two apps, based on the same broadcast intent action, somehow “collide”?
I have a BroadcastReceiver inside a service:
public class NotificationClickService extends Service {
private static final String DEBUG_TAG = "NotificationClickService";
@Override
public ...
-6
votes
1answer
170 views
Best free cms for a download website [closed]
I am looking for a free CMS made for multiple files download.
I want to start a website with different freeware programs, and I am looking for a cms which has the option to generate a random download ...
2
votes
0answers
206 views
How to download multiple files with android DownloadManager so that it appears in one queue
I'm using DownloadManager to download files. I know how to download one file and either use
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
or not. ...
0
votes
0answers
236 views
Download manager's ACTION_DOWNLOAD_COMPLETE is called before finished downloading
I have the following download function:
public void download(Uri uri, int nr) {
if (Util.hasNetworkConnection(ctx)) {
AppLibraryFragment.downAll = false;
Uri destination = ...
0
votes
1answer
143 views
Download manager crashes on On DOWNLOAD COMPLETE
This is my broadcast receiver:
BroadcastReceiver broadcast = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = ...
0
votes
1answer
53 views
Needs some help debuging. Images downloaded by DownloadManager disappears suddenly
I have very mysterious problem that I am not even sure how to debug.
What I am trying to do in my application is to download Images and present them in a gallery. But from time to time they simply ...
1
vote
1answer
288 views
Pause/Resume http connection download
I want to be able to open a http connection to a given file in Android and start downloading it.
I also have to be able to pause the download at some point and resume it later.
How is this achieved in ...
0
votes
2answers
575 views
Retrieve file path from caught DownloadManager intent
Since Android 4.2 if a user downloads some file in the browser the DownloadManager is used. If the user clicks the 'download complete' notification an Intent is and was always launched. Before Android ...
1
vote
1answer
76 views
Android: downloading a lot of files and saving them on the SD Card
I need to create some kind of the Download Manager to load a lot of files by the URLs and save them on the SD Card. I found in the android sdk two classes that as I think can help me in this case:
...
0
votes
2answers
118 views
Limit Download connections Apache
I am in the process of starting a affiliate program and i am providing hosted flv/mp4 files as a promo tools.
so ill be serving these video files to hundreds of surfers.
my question is how do i ...
0
votes
0answers
422 views
ios - Showing a Download progress UIViewController
After implementing the HCDownload for iOS into my app I am successfully able to display the downloading progress of a file.
The problem is that the guy who wrote it, didn't use Xcode to write the ...
-1
votes
1answer
101 views
What API and classes I should use to create a download manager in c#? [closed]
I want to crete a download manager with following features :
1)STOP/RESUME
2)Multiple file downloads simulataneously.
3)I want to download the files in segments like IDM do.(means creating and ...
0
votes
1answer
72 views
How a file downloader work?
I want to code a simple file downloader in C#. I want to know ho it work? eg. If I give it a URL, what it will do? I have very rough idea about it.
1)It will send a HTTP request.
2)The server will ...
0
votes
3answers
563 views
What's a .sh file?
So I am not experienced in dealing with a plethora of file types, and I haven't been able to find much info on exactly what .sh files are. Here's what I'm trying to do:
I'm trying to download map ...
0
votes
1answer
333 views
ASIHTTPRequest multiple downloads control like pause, resume
I am using ASIHTTPRequest to download video file from URL in background.
I am displaying the downloads with progress-bar & percentage and I want user can control the downloads like pause & ...
0
votes
1answer
116 views
Download manager mutiple files one at a time
I am attempting to use the download manager and sent multiple files at a time. since they are all coming from the same server (home server) it is causing some pretty substantial latency. What is the ...
1
vote
1answer
122 views
Android DownlaodManager: How can I get the response headers?
Here is the response's header:
HTTP/1.1 200 OK
Cache-Control: private
Content-Length: 37888
Content-Type: application/octet-stream; charset=utf-8
Server: Microsoft-IIS/7.5
Set-Cookie: ...
6
votes
1answer
774 views
Windows Forms Webbrowswer control with IDownloadManager
I'm using the Systems.Windows.Forms.Webbrowser control and need to override the download manager. I've followed the instructions here to subclass the form and override CreateWebBrowserSiteBase()
/// ...
0
votes
0answers
253 views
Download manager in Froyo
I have implemented DownloadManager in my application. I knew that the DownloadManager requires minimum sdkVersion 9. But my application should have minimum sdkVersion of 8. I have used AsyncTask for ...
1
vote
2answers
768 views
Android DownloadManager not working when redirected
I'm working on an app that will download a zip file stored on Amazon S3 via a Rails Heroku server after authenticating via oAuth 2. Here's the flow:
Request to authenticate with the server running ...
1
vote
1answer
317 views
Resumeable file downloader C# to VB.NET
I'm trying to convert a C# script that i had found on another site: http://www.codeproject.com/Tips/307548/Resume-Suppoert-Downloading
So far i have managed to convert most of it but once i run the ...
0
votes
0answers
92 views
How to catch browser download request with java
I am building a download manager in java and i want to be able to catch download request made by browsers(firefox, google chrome, safari).
I read How to catch file download event in Firefox ...
0
votes
3answers
515 views
Android: runtime-error 'Unable to create directory', on use of class DownloadManager, method setDestinationInExternalPublicDir
I'm getting this exception:
10-24 17:08:19.711: E/AndroidRuntime(1379): FATAL EXCEPTION: main
10-24 17:08:19.711: E/AndroidRuntime(1379): java.lang.RuntimeException: Unable to start activity ...
0
votes
1answer
216 views
How to call IDM(Internet Download Manager) from my Delphi application
The IDM offers some API for client applications : http://www.internetdownloadmanager.com/support/idm_api.html
How can I do this via Delphi?
0
votes
1answer
365 views
download file to custom directory
I am using the DownloadManager to download a file to my Android device. I can choose to download to the DCIM, Downloads, Picutures folder, etc using:
...
1
vote
0answers
187 views
W/DownloadManager( 7621): Aborting request for download 11:
E/UpdatesSettings( 7146): File write failed: java.io.IOException: open failed: EBUSY (Device or resource busy)
I/DownloadManager( 7621): Initiating request for download 11
W/DownloadManager( 7621): ...


