C#实现一个简单实用的TXT文本操作及日志框架详解
前言
首先先介绍一下这个项目,该项目实现了文本写入及读取,日志写入指定文件夹或默认文件夹,日志数量控制,单个日志大小控制,通过约定的参数让用户可以用更少的代码解决问题。
1.读取文本文件方法
使用:JIYUWU.TXT.TXTHelper.ReadToString(“文件物理路径”)
public static string ReadToString(string path) { try { LogLock.EnterReadLock(); StreamReader sr = new StreamReader(path, Encoding.UTF8); StringBuilder sb = new StringBuilder(); string line; while ((line = sr.ReadLine()) != null) { sb.AppendLine(line.ToString()); } sr.Close(); sr.Dispose(); return sb.ToString(); } catch (IOException e) { Console.WriteLine(e.ToString()); return null; } finally { LogLock.ExitReadLock(); } }
实现解析:
(1.为防止任务读取当我们进行读取时需要添加读取锁保证可以依次读取,否则可能出现被占用异常。
(2.创建读取流StreamReader(注意:由于会出现乱码这里要改一下把默认改为Encoding.UTF8),依次读取每一行。
(3.读取完成释放资源。并解锁。
2.写入文本文件方法
(1.创建文本并写入
使用:JIYUWU.TXT.TXTHelper.CreateWrite(“文件物理路径”,“文本内容”)
public static bool CreateWrite(string path, string context) { bool b = false; try { LogLock.EnterWriteLock(); FileStream fs = new FileStream(path, FileMode.Create); //获得字节数组 byte[] data = System.Text.Encoding.Default.GetBytes(context); //开始写入 fs.Write(data, 0, data.Length); //清空缓冲区、关闭流 fs.Flush(); fs.Close(); return b; } catch (Exception ex) { Console.WriteLine(ex.ToString()); return b; } finally { LogLock.ExitWriteLock(); } }
(2.在文本文件末尾追加写入
使用:JIYUWU.TXT.TXTHelper.WriteAppend(“文件物理路径”,“文本内容”)
public static bool WriteAppend(string path, string context) { bool b = false; try { LogLock.EnterWriteLock(); FileStream fs = new FileStream(path, FileMode.Append); StreamWriter sw = new StreamWriter(fs); //开始写入 sw.Write(context); //清空缓冲区 sw.Flush(); //关闭流 sw.Close(); fs.Close(); return b; } catch (Exception ex) { Console.WriteLine(ex.ToString()); return b; } finally { LogLock.ExitWriteLock(); } }
(3.自动判断换行追加或创建文本
使用:JIYUWU.TXT.TXTHelper.CreateOrWriteAppendLine(“文件物理路径”,“文本内容”)
public static bool CreateOrWriteAppendLine(string path, string context) { bool b = false; try { LogLock.EnterWriteLock(); if (!File.Exists(path)) { FileStream fs = new FileStream(path, FileMode.Create, FileAccess.Write); StreamWriter sw = new StreamWriter(fs); long fl = fs.Length; fs.Seek(fl, SeekOrigin.End); sw.WriteLine(context); sw.Flush(); sw.Close(); fs.Close(); b = true; } else { FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Write); StreamWriter sw = new StreamWriter(fs); long fl = fs.Length; fs.Seek(fl, SeekOrigin.Begin); sw.WriteLine(context); sw.Flush(); sw.Close(); fs.Close(); b = true; } return b; } catch (Exception ex) { Console.WriteLine(ex.ToString()); return b; } finally { LogLock.ExitWriteLock(); } }
实现解析:
(1)为防止多任务读取当我们进行读取时需要添加读取锁保证可以依次写入,否则可能出现被占用异常。
(2)创建文本流FileStream及写入流StreamWriter,直接进行数据写入。
(3)读取完成释放资源。并解锁。
3.写入日志
使用:JIYUWU.TXT.TXTHelper.WriteLog(“文本内容”,“单个文件大小(选填默认1M)”,“目录下文件数量(选填默认20个)”,“输出目录(选填默认bin文件下)”)
public static void WriteLog(string content, int fileSize = 1, int fileCount = 20, string filePath = "") { try { if (!string.IsNullOrWhiteSpace(filePath)) { logPath = filePath; } LogLock.EnterWriteLock(); logPath = logPath.Replace("file:\\", "");//这里为了兼容webapi的情况 string dataString = DateTime.Now.ToString("yyyy-MM-dd"); string path = logPath + "\\MyLog"; if (!Directory.Exists(path)) { Directory.CreateDirectory(path); path += "\\"; path += DateTime.Now.ToString("yyyy-MM-dd") + ".txt"; FileStream fs = new FileStream(path, FileMode.Create); fs.Close(); } else { int x = System.IO.Directory.GetFiles(path).Count(); path += "\\"; Dictionary<string, DateTime> fileCreateDate = new Dictionary<string, DateTime>(); string[] filePathArr = Directory.GetFiles(path, "*.txt", SearchOption.TopDirectoryOnly); if (filePathArr.Length == 0) { string sourceFilePath = path; path += DateTime.Now.ToString("yyyy-MM-dd") + ".txt"; FileStream fs = new FileStream(path, FileMode.Create); fs.Close(); filePathArr = Directory.GetFiles(sourceFilePath, "*.txt", SearchOption.TopDirectoryOnly); } for (int i = 0; i < filePathArr.Length; i++) { FileInfo fi = new FileInfo(filePathArr[i]); fileCreateDate[filePathArr[i]] = fi.CreationTime; } fileCreateDate = fileCreateDate.OrderBy(f => f.Value).ToDictionary(f => f.Key, f => f.Value); FileInfo fileInfo = new FileInfo(fileCreateDate.Last().Key); if (fileInfo.Length < 1024 * 1024 * fileSize) { path = fileCreateDate.Last().Key; } else { path += DateTime.Now.ToString("yyyy-MM-dd") + ".txt"; FileStream fs = new FileStream(path, FileMode.Create); fs.Close(); } if (x > fileCount) { File.Delete(fileCreateDate.First().Key); } } FileStream fs2 = new FileStream(path, FileMode.Open, FileAccess.Write); StreamWriter sw = new StreamWriter(fs2); long fl = fs2.Length; fs2.Seek(fl, SeekOrigin.Begin); sw.WriteLine(DateTime.Now.ToString("hh:mm:ss") + "---> " + content); sw.Flush(); sw.Close(); fs2.Close(); } catch (Exception ex) { Console.WriteLine(ex.ToString()); } finally { LogLock.ExitWriteLock(); } }
实现解析(以全部默认参数为例说明):
(1.为防止多任务进行操作,于是对文档加一个写入锁,否则可能出现被占用异常。
(2.检测文件目录是否已存在,不存在则创建目录并创建日志文件,存在就判断文件数量和大小,文件大小超过设置的值或默认值就新建一个文本,文件数量超过默认值或设置值就删除最早的一个文件。
(3.写入到指定文件。
(4.完成释放资源。并解锁。
项目框架就介绍到这里吧,后期还会将功能扩展,不多说了源码地址:
http://xiazai.jb51.net/201807/yuanma/c-txt-log_jb51.rar (可能存在没有测到的bug,出现的问题可以反馈给我,谢谢您的支持)。
问题汇总:
bug1:程序包中读取txt可能出现乱码,读取流中改一下把默认改为Encoding.UTF8应该就可以了。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对我们的支持。
上一篇:C#下载歌词文件的同步和异步方法
栏 目:C#教程
下一篇:C#中字段、属性、只读、构造函数赋值、反射赋值的问题
本文标题:C#实现一个简单实用的TXT文本操作及日志框架详解
本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/5121.html
您可能感兴趣的文章
- 01-10C#实现txt定位指定行完整实例
- 01-10WinForm实现仿视频 器左下角滚动新闻效果的方法
- 01-10C#实现清空回收站的方法
- 01-10C#实现读取注册表监控当前操作系统已安装软件变化的方法
- 01-10C#实现多线程下载文件的方法
- 01-10C#实现Winform中打开网页页面的方法
- 01-10C#实现远程关闭计算机或重启计算机的方法
- 01-10C#自定义签名章实现方法
- 01-10C#文件断点续传实现方法
- 01-10winform实现创建最前端窗体的方法
阅读排行
本栏相关
- 01-10C#通过反射获取当前工程中所有窗体并
- 01-10关于ASP网页无法打开的解决方案
- 01-10WinForm限制窗体不能移到屏幕外的方法
- 01-10WinForm绘制圆角的方法
- 01-10C#实现txt定位指定行完整实例
- 01-10WinForm实现仿视频 器左下角滚动新
- 01-10C#停止线程的方法
- 01-10C#实现清空回收站的方法
- 01-10C#通过重写Panel改变边框颜色与宽度的
- 01-10C#实现读取注册表监控当前操作系统已
随机阅读
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 01-10SublimeText编译C开发环境设置
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 04-02jquery与jsp,用jquery
- 01-11ajax实现页面的局部加载
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10C#中split用法实例总结
- 01-10delphi制作wav文件的方法
- 08-05dedecms(织梦)副栏目数量限制代码修改