在C#中怎样把Textbox中文本的文字写入一个.txt文件中?

来源:百度知道 编辑:UC知道 时间:2024/06/05 22:53:32
在C#中怎样把Textbox中文本的文字写入一个.txt文件中?
谢谢……

导入System.IO

按钮单击事件:
private void button1_Click(object sender, EventArgs e)
{
FileStream fs = new FileStream(@"C:/Documents and Settings/user/桌面/t.txt", FileMode.Create);
StreamWriter sw = new StreamWriter(fs);
sw.Write(textBox1.Text);
sw.Close();
fs.Close();

}

using System.IO;

textBox1.Text = "111";
StreamWriter sw = new StreamWriter("1.txt",true);
sw.Write(textBox1.Text);
sw.WriteLine(textBox1.Text);
sw.Flush();

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.IO;
using System.Windows.Forms;

namespace save
{
public partial class Form1 : Form
{
public Form1()
{
Initializ