您的位置:首页 > 理论基础 > 计算机网络

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

2013-09-27 14:13 393 查看
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)
{

}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  C# StreamWriter