C# 读取网络txt文件 并写在本地txt文件中

来源:互联网 发布:java rgb红色对应数字 编辑:程序博客网 时间:2024/05/29 16:30
public void WriteStream()        {            try            {               stirng ImagesPath = ImagesPath + "\\2013-09-27.txt";                HttpWebRequest oHttp_Web_Req = (HttpWebRequest)WebRequest.Create("http://tuitui.uzai.com/baiduBosom/index.20130927.txt");                Stream oStream = oHttp_Web_Req.GetResponse().GetResponseStream();                using (StreamReader respStreamReader = new StreamReader(oStream, Encoding.UTF8))                {                    string line = string.Empty;                    while ((line = respStreamReader.ReadLine()) != null)                    {                                                        UTF8Encoding utf8 = new UTF8Encoding(false);                                //写txt文件                                using (StreamWriter sw = new StreamWriter(ImagesPath, true, utf8))                                {                                                                      sw.WriteLine(line);                                }                    }                }            }            catch (Exception ex)            {            }        }

原创粉丝点击