C#读写指定编码格式的文本文件
在工作中经常读写文本文件,在读文件时,需要按开头的两个字节判断文件格式,然后按该格式读文件中的内容。
写文件时,也要按目标文件指定的格式来写入,只有这样才能让后续的环境正确读入。
1 查看格式
在vs2010开发环境打开某个文件,然后从菜单上, 文件--高级保存选项,就可看到当前文件的编码格式。
比如,xx.cs,xx.cshtml文件看到的是[简体中文(GB2312)-代码页936],就是GB2312。
xx.xml文件看到的是[Unicode(UTF-8带签名)-代码页65001],就是UTF-8。
常用的格式有:ASCII,UTF-8,UTF-7,UTF-32,Unicode,GB2312 。
2 读格式文件为
Encoding encode=Encoding.GetEncoding("GB2312")); 可以使用后附的类,先读文件的编码格式 encode = fileEncode.GetFileEncodeType("in_file.txt"); string strStr1 = File.ReadAllText("in.txt", encode);
3 写格式文件为
StreamWriter sw = new StreamWriter("out.txt", false, Encoding.GetEncoding("ASCII")); sw.Write("12.3"); sw.Close();
4 根据文件的编码格式读写文件的完整代码
using System; using System.Collections.Generic; using System.Linq; using System.Xml; using System.IO; using System.Configuration; using System.Text; namespace WebApplication1 { //=1=按文件编码格式读写 public partial class _Default : System.Web.UI.Page { string proj_name = ""; protected void Page_Load(object sender, EventArgs e) { string xml_in_file="c:\\part.xml";//输入片段,其它程序生成的是一个节点 string xml_out_file="c:\\all.xml";//整体,新节点片段,要追加到其尾部 //1 读入输入文件的编码格式,并按其编码全部读入文本 Encoding encode1 = fileEncode.GetFileEncodeType(xml_in_file); StringBuilder strSb1 = new StringBuilder(); string strStr1 = File.ReadAllText(xml_in_file, encode1); // StringBuilder strSb = new StringBuilder(); strSb.Clear(); //2 读入输出文件的编码格式,并按其编码全部读入文本 Encoding encode6 = fileEncode.GetFileEncodeType(xml_out_file); strSb.AppendFormat("{0} \r\n", File.ReadAllText(xml_out_file, encode6)); strSb.Replace(strStr1, "");//旧的同名段落替换为空 //新节点片段,替换整体末尾标签,即是加入到末尾 strSb.Replace("</object_set>", strStr1 + "\r\n" + "</object_set>");//新的插入到末尾 // FileInfo myFile = new FileInfo(xml_out_file); // StreamWriter sw = myFile.CreateText(); StreamWriter sw = new StreamWriter(xml_out_file, false, encode6);//Encoding.GetEncoding("GB2312")); sw.Write(strSb.ToString()); sw.Close(); } } //=2=获得文件编码格式的类 public class fileEncode {//获得文件编码格式的类 public static System.Text.Encoding GetFileEncodeType(string filename) { System.IO.FileStream fs = new System.IO.FileStream(filename, System.IO.FileMode.Open, System.IO.FileAccess.Read); System.IO.BinaryReader br = new System.IO.BinaryReader(fs); Byte[] buffer = br.ReadBytes(2); br.Close(); fs.Close(); if (buffer[0] >= 0xEF) { if (buffer[0] == 0xEF && buffer[1] == 0xBB) { return System.Text.Encoding.UTF8; } else if (buffer[0] == 0xFE && buffer[1] == 0xFF) { return System.Text.Encoding.BigEndianUnicode; } else if (buffer[0] == 0xFF && buffer[1] == 0xFE) { return System.Text.Encoding.Unicode; } else { return System.Text.Encoding.Default; } } else { return System.Text.Encoding.Default; } } } }
以上就是C#读写指定编码格式文本文件的方式方法,希望对大家的学习有所帮助。
上一篇:C#使用SqlDataAdapter对象获取数据的方法
栏 目:C#教程
本文标题:C#读写指定编码格式的文本文件
本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/6657.html
您可能感兴趣的文章
- 01-10C#实现txt定位指定行完整实例
- 01-10C#读写INI文件的方法
- 01-10c#读写App.config,ConfigurationManager.AppSettings 不生效的解决方法
- 01-10轻松学习C#的读写操作
- 01-10举例说明Java多线程编程中读写锁的使用
- 01-10C# Base 64 编码/解码实现代码
- 01-10c#检测文本文件编码的方法
- 01-10Windows系统中C#读写ini配置文件的程序代码示例分享
- 01-10C# FileStream文件读写详解
- 01-10C#实现winform中RichTextBox在指定光标位置插入图片的方法
阅读排行
本栏相关
- 01-10C#通过反射获取当前工程中所有窗体并
- 01-10关于ASP网页无法打开的解决方案
- 01-10WinForm限制窗体不能移到屏幕外的方法
- 01-10WinForm绘制圆角的方法
- 01-10C#实现txt定位指定行完整实例
- 01-10WinForm实现仿视频播放器左下角滚动新
- 01-10C#停止线程的方法
- 01-10C#实现清空回收站的方法
- 01-10C#通过重写Panel改变边框颜色与宽度的
- 01-10C#实现读取注册表监控当前操作系统已
随机阅读
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-10delphi制作wav文件的方法
- 01-11ajax实现页面的局部加载
- 04-02jquery与jsp,用jquery
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-10C#中split用法实例总结
- 01-10SublimeText编译C开发环境设置