C#向现有的文本文件中插入数据
能不能像现有的文本文件中写东西在文本文件指定的行中比如,向现有的文本文件的第十行插入数据能不能给个源码看看谢谢...
能不能像现有的文本文件中写东西
在文本文件指定的行中
比如,
向现有的文本文件的第十行插入数据
能不能给个源码看看
谢谢 展开
在文本文件指定的行中
比如,
向现有的文本文件的第十行插入数据
能不能给个源码看看
谢谢 展开
展开全部
class Program
{
static void Main(string[] args)
{
Console.WriteLine("输入要读取的文件名(全路径):");
string strFile = Console.ReadLine().Trim();
System.IO.StreamReader sr = new System.IO.StreamReader(strFile);
Console.WriteLine("在多少行插入文本:");
int iLine = Int32.Parse(Console.ReadLine());
Console.WriteLine("插入什么文本:");
string strInsert = Console.ReadLine();
string strText = ""; //用来存储更改后的文本内容
int lines = 0; //记录文件行数
while (!sr.EndOfStream)
{
lines++;
if (lines == iLine)
{
strText += strInsert + "\n";
}
string str = sr.ReadLine();
strText += str + "\n";
}
if (lines < iLine) //输入的行号比文件总行数大
{
Console.WriteLine("\n输入的行号非法!");
}
else
{
Console.WriteLine("\n插入后文件的内容:\n===========================");
Console.WriteLine(strText);
}
sr.Close();
System.IO.StreamWriter sw = new System.IO.StreamWriter(strFile, false);
sw.Write(strText);
sw.Flush();
Console.WriteLine("\n文件内容更新完毕!!\n");
sw.Close();
}
}
/**
* =================================
* 新建一个控制台项目
* 把代码复制过去就可以了
* =================================
*/
{
static void Main(string[] args)
{
Console.WriteLine("输入要读取的文件名(全路径):");
string strFile = Console.ReadLine().Trim();
System.IO.StreamReader sr = new System.IO.StreamReader(strFile);
Console.WriteLine("在多少行插入文本:");
int iLine = Int32.Parse(Console.ReadLine());
Console.WriteLine("插入什么文本:");
string strInsert = Console.ReadLine();
string strText = ""; //用来存储更改后的文本内容
int lines = 0; //记录文件行数
while (!sr.EndOfStream)
{
lines++;
if (lines == iLine)
{
strText += strInsert + "\n";
}
string str = sr.ReadLine();
strText += str + "\n";
}
if (lines < iLine) //输入的行号比文件总行数大
{
Console.WriteLine("\n输入的行号非法!");
}
else
{
Console.WriteLine("\n插入后文件的内容:\n===========================");
Console.WriteLine(strText);
}
sr.Close();
System.IO.StreamWriter sw = new System.IO.StreamWriter(strFile, false);
sw.Write(strText);
sw.Flush();
Console.WriteLine("\n文件内容更新完毕!!\n");
sw.Close();
}
}
/**
* =================================
* 新建一个控制台项目
* 把代码复制过去就可以了
* =================================
*/
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询