Tagged Questions

4
votes
3answers
1k views

Download manager in Java

I need to several some huge files (several gigs) from Java via FTP/HTTP. Is there a ready library (java / command line tool) to facilitate the download? Some obvious requirements are: ...
2
votes
4answers
141 views

Multiplication of two int's gets negativ

I'm currently coding a little download manager and I get a funny output when I try to calculate the download-progress in percent. This is what i use to calculate it: int progress = (byte_counter * ...
1
vote
0answers
87 views

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 ...
1
vote
1answer
78 views

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 ...
1
vote
0answers
44 views

How to capture downloads from Browsers

My Name is Rohit Kumawat I am creating a Download Manager in Java Language. I have almost created it with support for FTP,HTTP & HTTPS(Using JSSE 3.0). Now i want to capture downloads from ...
0
votes
0answers
31 views

how to download a file in multiserver

now i'm making a download accelerator application using java with particularly function is: Downloader can chunking file crawler can looking for"mirror"to file that will download for this i have ...
0
votes
1answer
119 views

Queueing Multiple Downloads, looking for a producer consumer API

I have an application (a servlet, but that's not very important) that downloads a set of files and parse them to extract information. Up to now, I did those operations in a loop : - fetching new file ...
0
votes
0answers
110 views

DownloadManager giving NullPointerException

I'm trying to use DownloadManager for Gingerbread and later users because my current download service doesn't work well on all versions. I'm encountering NullPointerExceptions at ...
0
votes
1answer
128 views

How to enable Https Downloads using java

I use following code to download... public void run() { RandomAccessFile file=null; //download wiil be stored in this file InputStream in=null; //InputStream to read from try ...
-1
votes
1answer
33 views

how to get the download link in java appication [closed]

Please help me to make a java program i have problem for example: I have a download page with the URL name example won to link download that page has the download link .. how to parse the page ...