C#中,如何创建文件并实现将输出的内容保存成.txt文件,急急急急急急急急急急急。。。。。
展开全部
要用到文件流,
/*新建文件方法*/
private void createNewFile()
{
DialogResult result = MessageBox.Show("文件类容已改变,是否保存?", "系统消息", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1);
if (result == DialogResult.Yes)
{
saveFile();
}
this.textBox.Text = "";
this.filePath = "";
ischanged = false;
}
/*新建文件方法*/
private void createNewFile()
{
DialogResult result = MessageBox.Show("文件类容已改变,是否保存?", "系统消息", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1);
if (result == DialogResult.Yes)
{
saveFile();
}
this.textBox.Text = "";
this.filePath = "";
ischanged = false;
}
追问
亲,请用控制台应用程序写一个嘛,不是windows的,谢谢。。。例如输出了一个学生的信息,请将输出的信息保存在txt文档中,如何实现?
追答
String textPath = @"G:\temp\text.txt";//文件路径
StreamWriter sw = new StreamWriter(textPath);//文件流
Console.Write("请输入一个字符串值:");
String str = Console.ReadLine();
sw.WriteLine(str);
sw.Close();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询