博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 读取网络txt文件 并写在本地txt文件中
阅读量:5883 次
发布时间:2019-06-19

本文共 1111 字,大约阅读时间需要 3 分钟。

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)            {            }        }

转载地址:http://jipix.baihongyu.com/

你可能感兴趣的文章
学生机房虚拟化(九)系统操作设计思路
查看>>
nginx报错pread() returned only 0 bytes instead of 4091的分析
查看>>
HTML 字符实体
查看>>
质数因子
查看>>
在NVIDIA Quadro NVS 295 显卡上装redhat 黑屏 无信号输入
查看>>
Announcing the new Office 365 admin center
查看>>
小白经营网站的前前后后
查看>>
Spring MVC 教程,快速入门,深入分析——如何实现全局的异常处理
查看>>
单用户模式修改密码
查看>>
微信小程序帮你赚到第一桶金
查看>>
mac下安卓开发环境搭建
查看>>
学习之华丽的注册按钮➕倒计时
查看>>
Vim 中使用 OmniComplete 为 C/C++ 自动补全(部分增加)
查看>>
初识Hadoop
查看>>
Oracle之内存结构(SGA、PGA)
查看>>
Binary Search Tree IN C
查看>>
ios-cocos2d游戏开发基础-进度条-开发笔记
查看>>
jquery之trigger()
查看>>
打造自己的Cacti模板
查看>>
Spring源码浅析之事务(四)
查看>>