大家好,又见面了,我是你们的朋友全栈君。
最近项目又遇到了一个问题,最初我把上传失败的记录保存在配置文件中,这个失败的记录有上百条,导致在配置文件中的value很长,这样在VS中就破坏了xml的结构,导致xml不能正确解析。最后决定将这些上传失败的记录单独保存在一个txt文本中,这样就需要对txt进行读写。方法其实还是很简单的,但是读写完一定要记得释放资源,否则就会报错的。主要方法如下:
读txt:
public static string ReadTxt()
{
try
{
string path = AppDomain.CurrentDomain.SetupInformation.ApplicationBase + ".//" + "LastFailJson.txt";
StreamReader sr = new StreamReader(path, Encoding.Default);
var rtValue = sr.ReadToEnd();
sr.Close();
return rtValue;
}
catch (IOException e)
{
LogHelper.Error("读取TXT出错:" + e.ToString());
return null;
}
}
写txt:
public static void WriteTxt(string strTxt)
{
string path = AppDomain.CurrentDomain.SetupInformation.ApplicationBase + ".//" + "LastFailJson.txt";
FileStream fs = new FileStream(path, FileMode.Create);
StreamWriter sw = new StreamWriter(fs);
//开始写入
sw.Write(strTxt);
//清空缓冲区
sw.Flush();
//关闭流
sw.Close();
fs.Close();
}
方法还是很简单的
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/105670.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...