0

Android 用の MonoDevelop を使用していますが、URL からファイルを簡単にダウンロードして、ファイルに保存する方法を教えてください。このアクションの多くの Java バージョンを見てきましたが、可能であればいくつかの C# コードが必要です。

前もって感謝します。

4

1 に答える 1

0

ドキュメントをWebClient参照してください。DownloadFile.

ドキュメントからのサンプル:

string remoteUri = "http://www.contoso.com/library/homepage/images/";
string fileName = "ms-banner.gif", myStringWebResource = null;
// Create a new WebClient instance.
WebClient myWebClient = new WebClient();
// Concatenate the domain with the Web resource filename.
myStringWebResource = remoteUri + fileName;
Console.WriteLine("Downloading File \"{0}\" from \"{1}\" .......\n\n", fileName, myStringWebResource);
// Download the Web resource and save it into the current filesystem folder.
myWebClient.DownloadFile(myStringWebResource,fileName);        
Console.WriteLine("Successfully Downloaded File \"{0}\" from \"{1}\"", fileName, myStringWebResource);
Console.WriteLine("\nDownloaded file saved in the following file system folder:\n\t" + Application.StartupPath);
于 2013-01-23T02:42:26.617 に答える