博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c# 读/写文件(各种格式)
阅读量:5247 次
发布时间:2019-06-14

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

最简单的: --------写 //content是要写入文本的字符串 //(@txtPath + @"\" + rid + ".txt");要被写入的TXT  StreamWriter sw = new StreamWriter(@txtPath + @"\" + rid + ".txt");  sw.WriteLine(content);  sw.Close(); ---------读 //folder被读取的文件路径 text = File.ReadAllText(folder, System.Text.Encoding.GetEncoding("gb2312")); -------写入流             //将string写入文件                 try                 {                     FileStream fs = new FileStream(@"d:\数据处理\法规20080116HTML\" + Actid.ToString() + ".html", FileMode.OpenOrCreate, FileAccess.Write);                     StreamWriter sw = new StreamWriter(fs,System.Text.Encoding.GetEncoding("gb2312"));                     sw.Flush();                     sw.BaseStream.Seek(0, SeekOrigin.Begin);                     sw.Write(pageContent);                     sw.Close();                 }                 catch (Exception ex) { } //HTTP向应后写出文件 HttpWebRequest myWebRequest = (HttpWebRequest)WebRequest.Create("http://www.microsoft.com"); WebResponse result = null; try {     myWebRequest = (HttpWebRequest)WebRequest.Create(Url);     result = myWebRequest.GetResponse();     Stream response = result.GetResponseStream();     byte[] bytes = new byte[10240];     int n = 1;     FileStream fs = File.Create(@"d:\数据处理\法规20080116HTML\" + Actid.ToString() + ".html");     while (n > 0)     {         n = response.Read(bytes, 0, 10240);         fs.Write(bytes, 0, n);     }     response.Close();     fs.Close(); } catch (Exception ex) { } //读取 string FileContent = File.ReadAllText(path, System.Text.Encoding.GetEncoding("gb2312"));

  

转载于:https://www.cnblogs.com/jameslif/p/3459746.html

你可能感兴趣的文章
用Spring MVC3+Ant+Jenkins+SVN+Tomcat做一个持续集成例子
查看>>
Linux内核中的活动
查看>>
Nginx配置SSL安全证书避免启动输入Enter PEM pass phrase
查看>>
使用批处理命令定期清理删除指定后缀文件,释放空间
查看>>
Flume OutOfMemoryError错误
查看>>
云悦系统详解
查看>>
抽象类和接口的区别(php实例)
查看>>
《前端工程化体系设计与实践》读书笔记
查看>>
QBXT金秋测试题解qwq
查看>>
magento后台无法打开
查看>>
在CentOS 7/6.5/6.4 中安装Java JDK 8(转载)
查看>>
Spring cache简单使用guava cache
查看>>
初始化linux部署mysql
查看>>
C 语言实现 RAII
查看>>
ZZU第四届程序设计大赛 4-作业题
查看>>
回溯法 解决问题
查看>>
Docker部署Flask项目 三
查看>>
购物车小练习
查看>>
多个Jar包的合并操作
查看>>
TCP/IP网络编程之套接字与标准I/O
查看>>