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.完成释放资源。并解锁。
项目框架就介绍到这里吧,后期还会将功能扩展,不多说了源码地址:
(可能存在没有测到的bug,出现的问题可以反馈给我,谢谢您的支持)。
问题汇总:
bug1:程序包中读取txt可能出现乱码,读取流中改一下把默认改为encoding.utf8应该就可以了。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。