using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace WindowsFormsApplication3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button2_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 button1_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();
}
}
}
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace WindowsFormsApplication3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button2_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 button1_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();
}
}
}