Tagged Questions
The downloading tag has no wiki summary.
8
votes
1answer
273 views
Does Android lower the download rate when the screen turns off?
I observed that I can download a file faster if I use wget with the screen on application,
that acquires a screen dim wake lock than doing the same without this application and
having the screen ...
6
votes
2answers
2k views
Disable VS' “downloading public symbols”
When I debug my ASP.NET webapp in VS2010, a dialog appears with the title "Downloading public symbols".
How do I instruct Visual Studio not to attempt this?
5
votes
3answers
629 views
how to time-out gracefully while downloading with python
I'm downloading a huge set of files with following code in a loop:
try:
urllib.urlretrieve(url2download, destination_on_local_filesystem)
except KeyboardInterrupt:
break
except:
print ...
4
votes
2answers
505 views
4
votes
3answers
722 views
Downloading Java classes from inside a (signed) applet
If I'm running a signed Java applet, can I download additional classes from remote sources (in the same domain, maybe even the same host) and run them?
I'd like to do this without changing pages or ...
3
votes
2answers
131 views
How to remotely update Python applications
What is the best method to push changes to a program written in Python? I have a piece of software that is written in Python that will regularly be updated. What would be the best way to do this? All ...
3
votes
2answers
239 views
A good way to bulk download images over http with Java
We have a web application that needs to import 10-20 images from a partner site via http. If I have a list of strings that represent the urls I want to download does anybody have a suggestion for how ...
3
votes
3answers
129 views
c# windows control that shows the downloading progress status of a file in a multithreaded software
So I whould like to develop a software in c# that will be capable of downloading youtube videos using threads.
Which control should i use in order to show the progress of each of the videos being ...
3
votes
2answers
771 views
Question about Apple's LazyTableImages sample - Doesn't behave exactly like the app store
I have a UITableView with a list of items, each having it's own image. I thought Apple's LazyTableImages sample project would be perfect to learn from, and use to implement the same kind of process ...
3
votes
1answer
370 views
Trouble downloading a file in C#
I am trying to download a file from a C# application. I have tried two different methods, but both yield the same response:
"The remote server returned an error: (401) Unauthorized."
I am pretty ...
3
votes
2answers
2k views
implementing UIActivityIndicatorView while NSData dataWithContentsOfURL is downloading
I am downloading an mp3 using NSData dataWithContentsOfURL:url. This takes a while and while the file is downloading the application hangs. I want to handle well and ideal would like to show the ...
3
votes
2answers
4k views
iPhone SDK: How do you download video files to the Document Directory and then play them?
I've been fooling around with code for ages on this one, I would be very grateful if someone could provide a code sample that downloaded this file from a server ...
2
votes
5answers
146 views
How to protect website from bulk scraping /downloading?
I have LAMP server where I run a website, which I want to protect against bulk scraping / downloading. I know that there is no perfect solution for this, that the attacker will always find a way. But ...
2
votes
1answer
429 views
Resume download of file in Silverlight 4 OOB
I have a Silverlight 4 out-of-browser application that needs to be able to resume the download of an external file if the download is interrupted for any reason. I would like to be able resume ...
2
votes
2answers
1k views
Download an Entire Website in C#
Forgive my ignorance on the subject
I am using
string p="http://" + Textbox2.text;
string r= textBox3.Text;
System.Net.WebClient webclient=new
System.Net.Webclient();
...
2
votes
2answers
576 views
How can I determine the download speed and amount from LWP::Simple's getstore()?
When using the perl module LWP::Simple, is there a simple way to determine the speed and amount downloaded by a single getstore() invocation? This would be useful for observing the status of large ...
2
votes
2answers
3k views
The operation has timed out with WebClient.DownloadFile and correct url's
I am batch uploading products to a database.
I am download the image urls to the site to be used for the products.
The code I written works fine for the first 25 iterations (always that number for ...
2
votes
3answers
163 views
What's the best way to supply download of a digital product in PHP?
Digital commercial products that customers pay for download link.
I have put all the zipped files (products) outside of web document root and buyers download them via a php script which is integrated ...
1
vote
1answer
111 views
MonoTouch: How to download pdf incrementally as indicated in the Apple slides “Building Newsstand Apps”, Session 504?
This is a followup to : MonoTouch: How to save a huge PDF downloaded from an URL incrementally?
I'm trying to follow the guidelines indicated by the Apple slides of the Newsstand presentation ...
1
vote
2answers
79 views
WebResource reporting 404 file not found
I'm working on a system that embeds various JS and CSS resources in the project dll, and access them using WebResource.axd. This all works fine locally, but if I download and install the app from our ...
1
vote
0answers
414 views
downloading the file inside android webview not the browser
how can i download a zip or apk file inside the webview because every time i click on any link inside the webview its first open the browser i need to download a file without the browser do
am new to ...
1
vote
0answers
38 views
Ruby Gem for File Downloads
This is a somewhat unnessary question because it regards something that's painless to write yourself...but sometimes it's nice to use an existing Gem anyway.
Is there a gem that simply downloads URLs ...
1
vote
0answers
163 views
Downloading Google Docs using google apis , Python and OAuth
I am trying to download the google docs from my web application. I am using OAuth for getting the access to the users account. But running this code for downloading the docs is giving the following ...
1
vote
1answer
267 views
How do I use PHP to download a doc file?
I know that there are php functions that allow a user to download or you to download file using PHP BUT I have not seen a single one that allows your php file to navigate and download a file and store ...
1
vote
0answers
148 views
Is there a utility combining recursive download and timestamp features from wget and the date filtering feature from curl?
I have set up this cron job that works to download everything recursively and does not replace files in the destination directory if they aren't older than that in the site (or different size):
* * * ...
1
vote
2answers
158 views
Downloading data from Google App Engine Application
http://code.google.com/appengine/docs/python/tools/uploadingdata.html
Here it is explained how to download data from a gAE app,
First thing to do is setting up remote_api.
The bulk loader tool ...
1
vote
2answers
179 views
Python - Downloading a .exe file from the internet
In the process of creating an auto-updater for my program, and I'm having trouble successfully downloading an .exe file.
What I was doing was something like this:
import urllib
url = ...
1
vote
2answers
103 views
Is there any way to let users begin downloading a file before it's finished uploading?
Anyone have any ideas on how to implement this?.. I am building a file sharing site and I want to allow users to begin downloading files before there even finished uploading. Is this possible?
1
vote
0answers
124 views
App crashes in device when images downloaded in ipad?
every one
iam trying to download images which are base64 encoded, they are sending an byte array apended with xml tags, the images size may vary from 2to 4 mb, iam storing the byte array in a string ...
1
vote
2answers
386 views
How download big file using PHP (low memory usage)
Welcome,
I have to download big file (1xx MB) using PHP.
How can i download this without wasting memory (RAM) for temporary file ?
When i use
...
1
vote
1answer
154 views
NSURLConnection - how much LEFT to download
I am downloading video files over wifi through my application to the iphone.
I want to make a % downloaded display (eg: loading bar style).
I thought about using - (void)connection:(NSURLConnection ...
1
vote
3answers
173 views
How can I get the contents of a followed link in WWW::Mechanize?
This is my last question for this I hope. I am using $mech->follow_link to try to download a file. For some reason though the file saved is just the page I first pull up and not the link I want to ...
1
vote
6answers
393 views
How to let users with required permission download a file via php?
I have a php file that acts as a gatekeeper for all the files I want people to download, who ahve sufficient privilages.
The code I use throw the file to the user is
header('Content-Description: ...
1
vote
1answer
802 views
Where is the sample applications in the lastest Spring release(Spring Framework 3.0.2)?
On the Spring download page, It says that
For all Spring Framework releases, the
basic release contains only the
binaries while the -with-dependencies
release contains everything the basic
...
1
vote
2answers
399 views
.NET 3.5 Download Large Files
I want to allow users to download a large file - around 4GB. I'd like them to have the ability to resume failed downloads.
Can anyone make any recommendations on the best way to do this? Or are ...
1
vote
2answers
762 views
Downloading large files to PC from OAS Server
We have an Oracle 10g forms application running on a Solaris OAS server, with the forms displaying in IE. Part of the application involves uploading and downloading files (Word docs and PDFs, mainly) ...
1
vote
2answers
2k views
NSURLConnection problem
I want my application to download some data from the internet, in iPhone SDK documentation
i found NSURLConnection class, which is used for downloading, Am i right?
I wrote the same code as it is in ...
1
vote
6answers
478 views
HTML downloading and text extraction
What would be a good tool, or set of tools, to download a list of URLs and extract only the text content?
Spidering is not required, but control over the download file names, and threading would be a ...
0
votes
0answers
28 views
tools for downloading files from websites in linux [migrated]
How do you download files, such as mp3/pdf/doc, from websites in linux OS, such as Ubuntu?
I know wget is a good tool, anything else?
PS:
Many downloading tools, such as eMule, are better than wget ...
0
votes
0answers
85 views
How to Download XML file from FTP in iPhone
I am trying to download xml file from FTP server, but couldn't succeed. As I got the total data received -1 each time. I am doing this code implementation provided by Apple Documentation. What could ...
0
votes
0answers
27 views
Leading whitespaces when downloading doc/docx/txt from BLOB
I have been struggling with this problem for about a week now. I'm doing my graduation project which involves rebuilding the backend of a system which handles all the documentation involved with ...
0
votes
2answers
34 views
Downloading the video file
How to download a video file from the webserver to application.anyone having tutorial for this or any api is used to download the file.
thanks
0
votes
2answers
135 views
Automatic Downloads setting in iOS 5
m searching for the solution to automatic background downloading with iOS 5.
I have seen in Settings of iPad, there are newsstand apps in the category of
Store - Automatic Downloads
apps like ...
0
votes
1answer
105 views
How can I make a Greasemonkey script to auto-download a file?
I go to the page, it has 1 zip file, but I don't know the name, other than its a .zip.
I want Greasemonkey to download this zip automatically, maybe using flashgot or something?
So I need it to ...
0
votes
2answers
77 views
downloading web page using NSURLDownload
here is my code, it tries to download a webpage using NSURLDownload. but it does not work, its a command line program.
- (void)startDownloadingURL
{
NSURLRequest *theRequest = [NSURLRequest ...
0
votes
3answers
141 views
Stop a thread downloading images when activity finishes
In my app, the activity starts a thread which download images from server. There are more than 30 images. While downloading, the user can switch to another activity. So I want that the thread should ...
0
votes
0answers
102 views
Android Multi Part File Downloading Program
i am creating a download manager application for android. I have created a simple screen which downloads a given URL using URLConnection object and also displayed its progress in pargress bar. Now the ...
0
votes
1answer
83 views
Download a file part by part in Python 3
I'm using Python 3 to download a file:
local_file = open(file_name, "w" + file_mode)
local_file.write(f.read())
local_file.close()
This code works, but it copies the whole file into memory first. ...
0
votes
2answers
49 views
Downloading with BufferInputStream not working properly
The following code doesn't work to download a file (btw clen is file's length):
int pos = 0, total_pos = 0;
byte[] buffer = new byte[BUFFER_SIZE];
while (pos != -1) {
...
0
votes
3answers
84 views
Prevent downloading with htaccess
I've searched around but have found no solutions.
I have a directory with all my fonts (svg, eot, woff, ttf, otf) in which I'd like to restrict downloading. Is there a way with .htaccess or..?
Edit: ...