Tagged Questions

Receiving data to a local system from a remote system, or to initiate such a data transfer.

learn more… | top users | synonyms (1)

47
votes
9answers
88k views

Saving image from PHP URL using PHP

I need to save an image from a php URL to my PC. Let's say I have a page http://example.com/image.php holding a single "flower" image, nothing else. How can I save this image from URL with a new name ...
35
votes
2answers
18k views

Download a file with Android, and showing the progress in a ProgressDialog

I am trying to write a simple application that gets updated. For this I need a simple function that can download a file and show the current progress in a ProgressDialog. I know how to do the ...
31
votes
6answers
26k views

Android download binary file problems

I am having problems downloading a binary file (video) in my app from the internet. In Quicktime, If I download it directly it works fine but through my app somehow it get's messed up (even though ...
27
votes
4answers
471 views

Why do all browsers download all CSS files - even for media types they don't support?

If I specify a CSS link with an unsupported media type ("bork") it still gets downloaded by every browser I've tried (including both desktop and several mobile browsers). <link href="bork.css" ...
25
votes
15answers
3k views

Your Favorite Programming Book available for FREE download [closed]

Possible Duplicate: List of freely available programming books Inspired by this SO question, that asks your favorite programming book, which is your favorite book that is available for FREE ...
25
votes
9answers
7k views

Resumable downloads when using PHP to send the file?

We are using a PHP scripting for tunneling file downloads, since we don't want to expose the absolute path of downloadable file: header("Content-Type: $ctype"); header("Content-Length: " . ...
22
votes
5answers
11k views

Using HTML5/Javascript to generate and save a file

I've been fiddling with WebGL lately, and have gotten a Collada reader working. Problem is it's pretty slow (Collada is a very verbose format), so I'm going to start converting files to a easier to ...
22
votes
10answers
22k views

Where is Visual Studio 2005 Express?

I'm working on a project that requires Visual Studio 2005 and I've been trying to find a legitimate download site for Visual Studio 2005 Express, but it seems like Microsoft only wants people to ...
21
votes
2answers
514 views

Does a browser download JS files if the user has JS disabled?

Does a browser download JS files if the user has JS disabled? I'm wondering if the browser downloads the JS files and ignores them or ignores the download all together. Do different browsers act ...
20
votes
2answers
5k views

Download image from url

I am trying to download the image from the url http://a3.twimg.com/profile_images/414797877/05052008321_bigger.jpg I am using the following code, but image is not saved. I want to know what i m doing ...
20
votes
4answers
73k views

Java JRE 64-bit download for Windows?

I'm working on a web site project with a Java component and am currently testing for cross-browser compatibility. Most is fine but the Java part won't load on 64-bit browsers. Looks like I need a ...
17
votes
9answers
776 views

What are the benefits of showing “Your download will begin in x seconds”?

Are there technological benefits when presenting a "download page" that gives a message like the following? Your download should automatically begin in a few seconds, but if not, click here. ...
17
votes
3answers
8k views

Can I download an SQLite db on /sdcard and access it from my Android app?

I already found out that there is no way to bundle files in an .apk and have them on /sdcard, the best option so far being to download the large files upon first run. I came accross a tutorial saying ...
16
votes
4answers
17k views

How to download a file using python in a 'smarter' way?

I need to download several files via http in Python. The most obvious way to do it is just using urllib2: import urllib2 u = urllib2.urlopen('http://server.com/file.html') localFile = ...
15
votes
2answers
9k views

C# Get http:/…/File Size

I want to get the size of an http:/.../file before I download it. The file can be a webpage, image, or a media file. Can this be done with HTTP headers? How do I download just the file HTTP header? ...
14
votes
6answers
15k views

Where can I download an offline installer of Cygwin?

I need an offline installer with most of the utilities commonly needed. Somehow the default installer confuses me with all its package selection. I installed Cygwin but I can't find the diff utility ...
13
votes
7answers
3k views

What's the best way to calculate remaining download time?

Let's say you want to calculate the remaining download time, and you have all the information needed, that is: File size, dl'ed size, size left, time elapsed, momentary dl speed, etc'. How would you ...
13
votes
4answers
10k views

Set timeout for webClient.DownloadFile()

I'm using webClient.DownloadFile() to download a file can I set a timeout for this so that it won't take so long if it can't access the file?
13
votes
2answers
3k views

Javascript reference for offline browsing

I am going offline for a few days, and would like to bring the javascript documentation with me on my laptop :) Does anyone know of a place where I can get downloadable reference documentation for ...
12
votes
2answers
1k views

GWT - easiest way to do a simple loading screen until file is loaded

When clicking a button, my GWT application returns a PDF file embedded in an HTML page which looks something like: <html><head></head> <body marginwidth="0" marginheight="0" ...
12
votes
9answers
9k views

How do I get csv file to download on IE? Works on firefox

I'm struggling with an odd error. I have a simple web app that grabs stuff from a DB then outputs it as a downloadable csv file. It works on firefox and chrome, but IE fails to recognize it as a csv ...
12
votes
2answers
763 views

How does Flickr prevent people from downloading images from the site?

Just wondering how does Flickr prevent people from downloading images from its site? What are they using?
12
votes
6answers
31k views

Download File Using jQuery

How can I prompt a download for a user when they click a link. For example, instead of: <a href="uploads/file.doc">Download Here</a> I could use: <a href="#">Download ...
11
votes
4answers
19k views

Android write to sd card folder

I am using the following code to download a file from my server then write it to the root directory of the sd card, it all works fine: package com.downloader; import java.io.File; import ...
11
votes
1answer
8k views

Grails File Download

I'm trying to craete a site which allows users to upload any file type they like. I've implemented this feature fine, and the file is held on the server. Later on they can download the file to view, ...
10
votes
5answers
143 views

Only count a download once it's served

We have this code which serves a download: public class downloadRelease : IHttpHandler { public void ProcessRequest (HttpContext context) { -- snip -- context.Response.Clear(); ...
10
votes
8answers
1k views

implementing a download manager that supports resuming

I intend on writing a small download manager in C++ that supports resuming (and multiple connections per download). From the info I gathered so far, when sending the http request I need to add a ...
9
votes
4answers
1k views

Downloading video's in flv format from youtube

I cant really understand how youtube serves videos but I have been reading through what I can, it seems like the old method get_video is now obsolete and can't be used any more so because of this I am ...
9
votes
3answers
9k views

How to download/checkout a project from Google Code in Windows?

How do I download a ZIP file of an entire project from Google Code when there are no prepared downloads available? This is what I see on the checkout page: Command-line access Use this command ...
8
votes
1answer
185 views

Intent filter to download attachment from gmail apps on Android

I have android application with intent filter (ACTION_VIEW) to open file and import it into my application. I wish to download file attachment from gmail app into my application. Some of file type ...
8
votes
6answers
634 views

How to track a completed file download in ASP.NET

I have this ASP.NET web site that allows users to download program installation packages (just normal files). I want to be able to track when a download is completed (i.e. the file has been fully ...
8
votes
1answer
2k views

Android: download large file

I'm trying to download large file from Internet (>20Mb) private class DownloadTask extends AsyncTask<DatabaseInfo, Integer, String> { private DatabaseInfo info; protected String ...
8
votes
2answers
391 views

How do I dynamically create a document for download in Javascript?

I'm writing some Javascript code that generates an XML document in the client (via Google Earth plugin). I'd like the user to be able to click a button on the page and be prompted to save that XML to ...
8
votes
4answers
741 views

Securing Large Downloads Using C# and IIS 7

Here's the setup: 1 web server running a C# app to which my users (stored in a MySQL database on said server) authenticate. 1 file server running software TBD. In the past I've used lighttpd and ...
8
votes
8answers
6k views

Sending large files reliably in PHP

I have a php script on a server to send files to recipents: they get a unique link and then they can download large files. Sometimes there is a problem with the transfer and the file is corrupted or ...
8
votes
4answers
30k views

How to make PDF file downloadable in HTML link?

I am giving link of a pdf file on my web page for download, like below Download Brochure The problem is when user clicks on this link then If the user have installed Adobe Acrobat, then it opens ...
8
votes
3answers
2k views

How to implement a file download in asp.net

What is the best way to implement, from a web page a download action using asp.net 2.0? Log files for a action are created in a directory called [Application Root]/Logs. I have the full path and ...
7
votes
4answers
704 views

Downloading a file from the Internet while being able to abort the download any time

I'd like to download a file from my Delphi program in a separate thread dedicated to the download. The problem is that the main program can be closed any time (thus the download thread can be ...
7
votes
2answers
893 views

ASP.NET MVC download image rather than display in browser

Rather than displaying a PNG in the browser window, I'd like the action result to trigger the file download dialogue box (you know the open, save as, etc). I can get this to work with the code below ...
7
votes
3answers
833 views

How to estimate download time remaining (accurately)?

Sure you could divide the remaining file size by the current download speed, but if your download speed fluctuates (and it will), this doesn't produce a very nice result. What's a better algorithm ...
7
votes
5answers
3k views

Determine total size of SVN directory/trunk

Is there a way to count/calculate the total size of a svn directory if you were to checkout a revision? I have limited internet downloads so I need to know how big something is before I go and ...
7
votes
4answers
1k views

download webpage and dependencies, including css images

often I need to download a webpage and then edit it offline. I have tried a few tools and the main feature they lack is downloading images referenced in the CSS files. Is there a tool (for Linux) ...
7
votes
5answers
2k views

HTTP Download very Big File

I'm working at a web application in Python/Twisted. I want the user to be able to download a very big file (> 100 Mb). I don't want to load all the file in memory (of the server), of course. server ...
7
votes
3answers
5k views

How to download a file from a website in C#

Is it possible to download a file from a website in Windows Application form and put it into a certain directory? Thanks! ~~Seth
7
votes
3answers
5k views

How to block downloads in .NET WebBrowser control?

I need to prevent the .NET WebBrowser control from showing any "Do you want to open or save this file?" and "Save As" dialogs. Instead, I want to display a message box telling users that file ...
7
votes
1answer
3k views

Python - downloading a file over HTTP with progress bar and basic authentication

I'm using urllib.urlretrieve to download a file, and implementing a download progress bar using the reporthook parameter. Since urlretrieve doesn't directly support authentication, I came up with ...
7
votes
10answers
3k views

Best way to initiate a download?

On a PHP-based web site, I want to send users a download package after they have filled out a short form. The site-initiated download should be similar to sites like download.com, which say "your ...
6
votes
3answers
940 views

Pause/Resume downloads in Objective-C

Alright. Hopefully this will be my last post about the download manager I am writing in Objective-C. Everything seems to work well except the pause/resume functionality. My issue is that when a ...
6
votes
2answers
3k views

PHP File Download using POST data via jQuery AJAX

So I know there have been a number of similar posts, but I think this is enough of a variation to warrant its own question: I am building an XLS exporter in PHP and jQuery. I am trying to POST an ...
6
votes
4answers
1k views

Youtube video download URL [closed]

Hi Before this I could download Youtube videos in my application by URLs like this: http://www.youtube.com/get_video?video_id=g1SADcP5g1o&t=vjVQa1PpcFPdtzEqgjY9XznEG3_WlkhS1xMugBP5eJ8= But ...

1 2 3 4 5 44