Monodevelop Android 下载文件
Posted
技术标签:
【中文标题】Monodevelop Android 下载文件【英文标题】:Monodevelop Android download file 【发布时间】:2013-01-23 02:37:08 【问题描述】:我正在使用适用于 android 的 MonoDevelop,希望获得一些帮助,以便轻松地从 URL 下载文件,然后将其保存到文件中。我见过这个动作的许多 Java 版本,但如果可能的话,我会使用一些 C# 代码。
提前致谢。
【问题讨论】:
【参考方案1】:请查看docs to 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);
【讨论】:
以上是关于Monodevelop Android 下载文件的主要内容,如果未能解决你的问题,请参考以下文章
Ubuntu10.10下开发环境Monodevelop的方向键问题