0

我正在使用返回一些数据的 Web 服务。我正在将这些数据写入文本文件。我的问题是我已经在 c# 代码中指定了一个文件,我想在其中打开一个对话框,要求用户将文件保存在他想要的位置。在这里,我发布了我使用过的代码。请帮助我修改我的代码。实际上,在从互联网上搜索之后,所有人都有不同的看法,并且需要对代码进行很多更改,因为我不想在某种程度上更改我的代码。我可以在测试文件中写入内容,但是如何要求用户在计算机上输入他想要的位置?

  StreamWriter file = new StreamWriter("D:\\test.txt");
 HttpWebRequest webreq = (HttpWebRequest)WebRequest.Create(yahooURL);
                // Get the response from the Internet resource.
                HttpWebResponse webresp = (HttpWebResponse)webreq.GetResponse();
                // Read the body of the response from the server.
                StreamReader strm =
                  new StreamReader(webresp.GetResponseStream(), Encoding.ASCII);

 string content = "";
                for (int i = 0; i < symbols.Length; i++)
                {
                    // Loop through each line from the stream,
                    // building the return XML Document string
                    if (symbols[i].Trim() == "")
                        continue;

                    content = strm.ReadLine().Replace("\"", "");
                    string[] contents = content.ToString().Split(',');
                    foreach (string dataToWrite in contents)
                    {
                        file.WriteLine(dataToWrite);
                    }

                }
                file.Close();
4

1 回答 1

0

Try this

using (WebClient Client = new WebClient ())
{
    Client.DownloadFile("http://www.abc.com/file/song/a.mpeg", "a.mpeg");
}
于 2013-09-19T06:27:01.807 回答