苏飞论坛

标题: 读写文件的例子 IO [打印本页]

作者: 站长苏飞    时间: 2012-7-6 19:39
标题: 读写文件的例子 IO
[C#] 纯文本查看 复制代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;

namespace 读取文件和写入文件
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            StreamWriter sfile = new StreamWriter("j://sufei.txt");//写入到sufei.txt文件中
            sfile.Write("sufeisufei");
            sfile.Close();
            StreamReader ss = new StreamReader("j://sufei.txt");//读取文件sufei.txt中的内容
            this.richTextBox1.Text = ss.ReadLine();
            ss.Close();
            
        }
    }
}


作者: 地久天长-孔德姣    时间: 2012-10-5 14:22
想看看代码。。。。。




欢迎光临 苏飞论坛 (http://www.sufeinet.com/) Powered by Discuz! X3.4