C#如何向文本文件中写入
我想通过单击按钮,然后就自动把信息写入到指定的文本文件。请问这用什么方法?同样如何当单击某个按钮时就读取这个文本文件内容?...
我想通过单击按钮,然后就自动把信息写入到指定的文本文件。请问这用什么方法?同样如何当单击某个按钮时就读取这个文本文件内容?
展开
2个回答
2013-12-01
展开全部
写文本不需要弹出窗体。给你个函数
public static void MakeFile(string FileName,string Content)
{
System.IO.StreamWriter sw = new System.IO.StreamWriter(FileName,false,System.Text.Encoding.GetEncoding("gb2312"));
try
{
sw.Write(Content);
sw.Flush();
}
finally
{
if ( sw != null ) sw.Close();
}
}// MakeFile
把这个函数放你的代码里,filename是文件名字,content是内容。
读文件
System.IO.FileInfo fi = new FileInfo(@"c:\\test.text");
StreamReader sr = fi.OpenText();
string s1 = sr.ReadToEnd(); //全读出来
或者一行一行的读。
string strLine = string.Empty;
while ((strLine = sr.ReadLine()) != null)
{
strLine 就是一行,
}
public static void MakeFile(string FileName,string Content)
{
System.IO.StreamWriter sw = new System.IO.StreamWriter(FileName,false,System.Text.Encoding.GetEncoding("gb2312"));
try
{
sw.Write(Content);
sw.Flush();
}
finally
{
if ( sw != null ) sw.Close();
}
}// MakeFile
把这个函数放你的代码里,filename是文件名字,content是内容。
读文件
System.IO.FileInfo fi = new FileInfo(@"c:\\test.text");
StreamReader sr = fi.OpenText();
string s1 = sr.ReadToEnd(); //全读出来
或者一行一行的读。
string strLine = string.Empty;
while ((strLine = sr.ReadLine()) != null)
{
strLine 就是一行,
}
2013-12-01
展开全部
System.IO.File.ReadAllText;//读取文本文件
System.IO.File.WriteAllText;//写入文本文件
System.IO.File.WriteAllText;//写入文本文件
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |