這篇文章主要介紹C#如何實(shí)現(xiàn)一個簡單實(shí)用的TXT文本操作及日志框架,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
成都創(chuàng)新互聯(lián)長期為上千余家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為天鎮(zhèn)企業(yè)提供專業(yè)的做網(wǎng)站、網(wǎng)站設(shè)計(jì),天鎮(zhèn)網(wǎng)站改版等技術(shù)服務(wù)。擁有10多年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。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(); } }
實(shí)現(xiàn)解析:
(1.為防止任務(wù)讀取當(dāng)我們進(jìn)行讀取時需要添加讀取鎖保證可以依次讀取,否則可能出現(xiàn)被占用異常。
(2.創(chuàng)建讀取流StreamReader(注意:由于會出現(xiàn)亂碼這里要改一下把默認(rèn)改為Encoding.UTF8),依次讀取每一行。
(3.讀取完成釋放資源。并解鎖。
2.寫入文本文件方法
(1.創(chuàng)建文本并寫入
使用:JIYUWU.TXT.TXTHelper.CreateWrite(“文件物理路徑”,“文本內(nèi)容”)
public static bool CreateWrite(string path, string context) { bool b = false; try { LogLock.EnterWriteLock(); FileStream fs = new FileStream(path, FileMode.Create); //獲得字節(jié)數(shù)組 byte[] data = System.Text.Encoding.Default.GetBytes(context); //開始寫入 fs.Write(data, 0, data.Length); //清空緩沖區(qū)、關(guān)閉流 fs.Flush(); fs.Close(); return b; } catch (Exception ex) { Console.WriteLine(ex.ToString()); return b; } finally { LogLock.ExitWriteLock(); } }
(2.在文本文件末尾追加寫入
使用:JIYUWU.TXT.TXTHelper.WriteAppend(“文件物理路徑”,“文本內(nèi)容”)
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); //清空緩沖區(qū) sw.Flush(); //關(guān)閉流 sw.Close(); fs.Close(); return b; } catch (Exception ex) { Console.WriteLine(ex.ToString()); return b; } finally { LogLock.ExitWriteLock(); } }
(3.自動判斷換行追加或創(chuàng)建文本
使用:JIYUWU.TXT.TXTHelper.CreateOrWriteAppendLine(“文件物理路徑”,“文本內(nèi)容”)
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(); } }
實(shí)現(xiàn)解析:
(1)為防止多任務(wù)讀取當(dāng)我們進(jìn)行讀取時需要添加讀取鎖保證可以依次寫入,否則可能出現(xiàn)被占用異常。
(2)創(chuàng)建文本流FileStream及寫入流StreamWriter,直接進(jìn)行數(shù)據(jù)寫入。
(3)讀取完成釋放資源。并解鎖。
3.寫入日志
使用:JIYUWU.TXT.TXTHelper.WriteLog(“文本內(nèi)容”,“單個文件大?。ㄟx填默認(rèn)1M)”,“目錄下文件數(shù)量(選填默認(rèn)20個)”,“輸出目錄(選填默認(rèn)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(); } }
實(shí)現(xiàn)解析(以全部默認(rèn)參數(shù)為例說明):
(1.為防止多任務(wù)進(jìn)行操作,于是對文檔加一個寫入鎖,否則可能出現(xiàn)被占用異常。
(2.檢測文件目錄是否已存在,不存在則創(chuàng)建目錄并創(chuàng)建日志文件,存在就判斷文件數(shù)量和大小,文件大小超過設(shè)置的值或默認(rèn)值就新建一個文本,文件數(shù)量超過默認(rèn)值或設(shè)置值就刪除最早的一個文件。
(3.寫入到指定文件。
(4.完成釋放資源。并解鎖。
問題匯總:
bug1:程序包中讀取txt可能出現(xiàn)亂碼,讀取流中改一下把默認(rèn)改為Encoding.UTF8應(yīng)該就可以了。
以上是“C#如何實(shí)現(xiàn)一個簡單實(shí)用的TXT文本操作及日志框架”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計(jì)公司行業(yè)資訊頻道!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
文章題目:C#如何實(shí)現(xiàn)一個簡單實(shí)用的TXT文本操作及日志框架-創(chuàng)新互聯(lián)
網(wǎng)站URL:http://www.rwnh.cn/article18/cecsgp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供ChatGPT、標(biāo)簽優(yōu)化、手機(jī)網(wǎng)站建設(shè)、網(wǎng)站營銷、做網(wǎng)站、動態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容