Questions tagged [download-manager]

A download-manager is often used for handling long-running downloads, and might support pausing, interrupting and resuming.

The download manager will conduct the download in the background, taking care of HTTP interactions and retrying downloads after failures or across connectivity changes and system reboots.

465 questions
1
vote
1 answer

How to implement DownloadManager in Java Web Application?

We're planning a module in our web application built on Java EE 6 features (Ejb 3.1, JSF 2.0, JPA w/ Hibernate 2.0) that comprehends something like a 'download manager'/'upload manager' module. The user of this web application should be able to…
user1021917
1
vote
0 answers

How to integrate a download Manager (Java) with browsers like Mozila,Explorer

I have created Java Donload Manager in java Now i want to integrate it with Mozila, Internet Explorer. Can somebody suggest me how to integrate my above code with Mozila,Explorer. Is there any Java API that supports the same. I am sure there is…
rohit
  • 602
  • 4
  • 11
  • 24
1
vote
1 answer

I made a simple Download Manager in Java, my Download Manager is able to download is unable to download large files from the net

I am not able to download large files from the net ( more than 1 mb file ). However, my program is able to download those large files from the localhost. Is there anything else that i need to do to download large files? Here is the code snippet: …
rabishah
  • 561
  • 2
  • 4
  • 16
1
vote
2 answers

Large File Advice

I have to deliver 2-ish GB media files to customers (zipped up) after purchase. Any advice on how to deliver such big files to the general population (translated: novice internet users who will not be savvy enough to use FTP or something). We can…
netricate
  • 1,708
  • 2
  • 12
  • 13
1
vote
0 answers

Untitled download occure when I try to download from a local server

I run an android app that let me download file from an URL, I used download manager to download the files, it works just fine when I use a public URL server from the internet but when I use my local server it doesn't download the file and give me…
1
vote
2 answers

cannot open file downloaded using download manager API inside android webview

I am downloading pdf files inside web view in android studio. That's going well. I am successfully downloading a pdf file with the .pdf extension but when I click on the file see a toast message something went wrong can't open this file Here is my…
1
vote
0 answers

How to download an image from jetpack compose in Kotlin?

So in my app I am loading images using AsyncImage @Compose ... AsyncImage(model = link, contentDescription = title, ... And it loads the images in the app using jetpack compose. I've made a download button and when I click I want to…
EGD
  • 11
  • 1
1
vote
0 answers

Download manager not working properly in fragment

I am trying to download a file stored in a cloud storage site internxt using file url from a webview in android. file is opening in webview. but unable to download. app stopped working when clicked download & downloaded 100%. Logcat showing error…
1
vote
0 answers

DexClassLoader and DownloadManager API

I was trying to run my part of a code, where I get method startDownload from external APK on my sdcard via DexClassLoader. In onCreate method of my activity I am trying to invoke this activity, that means I want to invoke download. Source code of…
Waypoint
  • 17,283
  • 39
  • 116
  • 170
1
vote
7 answers

How can i get a file name from Response.Header ? C#

This is a code, C#. System.Net.HttpWebRequest _Response = (HttpWebRequest)System.Net.WebRequest.Create(e.Uri.AbsoluteUri.ToString()); _Response.Method = "GET"; _Response.Timeout = 120000; _Response.Accept = …
doberman
  • 51
  • 1
  • 1
  • 7
1
vote
0 answers

how to get correct checksum md5 for a several parts downloaded file?

I've written a program in python that downloads a file and if it finishes before complete download, it can resume the rest. The problem is that the checksum when it downloads the file without any interrupts is different to the checksum when it…
1
vote
4 answers

Parallel downloads in iOS

I am working on building a download manager functionality for the app I am working on. As a requirement we need to support maximum of three parallel downloads. I saw some code examples of this forum using same delegate object and create multiple…
Bhumik
  • 13
  • 1
  • 4
1
vote
1 answer

Need a webbrowser component which allows custom download manager to be plugged in

I need suggestions on possible webbrowser components/controls which allows developers to plug in custom download managers. Suggestions can include browsers for WinForm. P.S.: I have been using csExWebBrowser for a year or so, but recently I've been…
Trainee4Life
  • 2,203
  • 2
  • 22
  • 38
1
vote
0 answers

DownloadManager not showing notification

I'm working on an application where the user can download files into his device , when i press on the file , it get downloaded and pushed into the directory i created but the issue is that the notification which shows is the file is downloading or…
Taki
  • 3,290
  • 1
  • 16
  • 41
1
vote
0 answers

Android - Get absolute file path from uri, picked from Downloads

I am trying to get the absolute file path from the uri. But can't get it for the files downloaded with some download manager. For example, I have downloaded an audio and stored it in /storage/emulated/0/MIUI/.ringtone/Our Street (30-secs…
Yeamin Chowdhury
  • 502
  • 1
  • 9
  • 19