日期:2014-05-17 浏览次数:21002 次
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.IO;
using System.Windows.Forms;
namespace WindowsFormsApplication9
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void toolStripComboBox1_Click(object sender, EventArgs e)
        {
        }
        private void toolStripButton1_Click(object sender, EventArgs e)
        {
            this.saveFileDialog1.Filter = "*.txt|*.txt";  
            this.saveFileDialog1.ShowDialog();  
           string file = this.saveFileDialog1.FileName;  
            if (string.IsNullOrEmpty(file)) return;  
            //以下为写字符到文本文件,需要添加System.IO引用   
            //创建一个文件流   
            FileStream fs = new FileStream(file, FileMode.OpenOrCreate,  
                FileAccess.Write);  
           //创建一个StreamWriter对象   
           StreamWriter sw = new StreamWriter(fs);  
            sw.Write(this.textBox1.Text);              //释放StreamWriter对象,文件流对象   
           sw.Dispose();  
            fs.Dispose();  
        }
        private void toolStripButton2_Click(object sender, EventArgs e)
        {
            this.openFileDialog1.Filter = "*.txt|*.txt";
            this.openFileDialog1.ShowDialog();
            string file = this.openFileDialog1.FileName;
            if (string.IsNullOrEmpty(file)) return;
            //以下为写字符到文本文件,需要添加System.IO引用
            //创建一个文件流
            FileStream fs = new FileStream(file, FileMode.Open,
                FileAccess.Read);
            //创建一个StreamWriter对象
            StreamReader sr = new StreamReader(fs);
            this.textBox1.Text = sr.ReadToEnd();
            //释放StreamWriter对象,文件流对象
            sr.Dispose();
            fs.Dispose();
        }
        private void textBox1_TextChanged(object sender, EventArgs e)
        {
        }
    }
}