C#对文件的处理

1、StreamWriter 类主要用于向流中写入数据

     private void Browse_Click(object sender, EventArgs e)
    {
        openFileDialog1.FileName = "";
        openFileDialog1.ShowDialog();
        textBox1.Text = openFileDialog1.FileName;
    }

    private void 追加文件_Click(object sender, EventArgs e)
    {
        StreamWriter sw = File.AppendText(textBox1.Text);  //在原文件末尾加内容

        //StreamWriter sw = new StreamWriter(textBox1.Text); //覆盖原文件
        sw.WriteLine("追逐梦想");
        sw.WriteLine("sdfsdf");
        sw.Flush(); //加不加sWrete.Flush()没有关系。不用Flush相当于一次性写入所有,用了Flush,表示不等后面的,先把当前的写入
        sw.Close();
    }

2、StreamReader 类主要用于向流中读出数据

private void Browse_Click(object sender, EventArgs e)
    {
        openFileDialog1.FileName = "";
        openFileDialog1.ShowDialog();
        textBox1.Text = openFileDialog1.FileName;
    }

    private void 追加文件_Click(object sender, EventArgs e)
    {
        StreamWriter sw = File.AppendText(textBox1.Text);

        //StreamWriter sw = new StreamWriter(textBox1.Text);
        sw.WriteLine("追逐梦想");
        sw.WriteLine("sdfsdf");
        sw.Flush();
        sw.Close();
    }

    private void 读取文件_Click(object sender, EventArgs e)
    {
        StreamReader sr = new StreamReader(textBox1.Text);

        while (sr.Peek() != -1)
        {
            string str = sr.ReadLine();                
            textBox2.AppendText(str + "\r\n");
        }
        sr.Close();
    }

3、office自带库处理Excel,using Excel = Microsoft.Office.Interop.Excel;

private void 读取表格_Click(object sender, EventArgs e)
    {
      
        comboBox1.Items.Clear();
        string connectionString = "Provider=Microsoft.ACE.OLEDB.12.0;" + "Data Source=" + textBox1.Text + ";" + ";Extended Properties=\"Excel 12.0;HDR=YES;IMEX=1\"";
        OleDbConnection connection = new OleDbConnection(connectionString);
        connection.Open();
        DataTable dtSheetName = connection.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new object[] { null, null, null, "Table" });
        string[] strTableName = new string[dtSheetName.Rows.Count];
        for(int k = 0;k < dtSheetName.Rows.Count;k++)
        {
            strTableName[k] = dtSheetName.Rows[k]["TABLE_NAME"].ToString();
            comboBox1.Items.Add(strTableName[k]);
        }
        
        connection.Close();
        comboBox1.Visible = true;
    }
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
    {
        comboBox1.Visible = false;
        string connectionString = "Provider=Microsoft.ACE.OLEDB.12.0;" + "Data Source=" + textBox1.Text + ";" + ";Extended Properties=\"Excel 12.0;HDR=YES;IMEX=1\"";
        OleDbConnection connection = new OleDbConnection(connectionString);
        connection.Open();
        OleDbDataAdapter myCommand = null;
        DataTable dt = new DataTable();
        string strExcel = "select*from[" + comboBox1.SelectedItem.ToString() + "]";
        myCommand = new OleDbDataAdapter(strExcel, connectionString);
        dt = new DataTable();
        myCommand.Fill(dt);
        dataGridView1.DataSource = dt;
        connection.Close();
        

    }
C# 文件处理技术,包括file,fileinfo等,具体如下 第三章 文件处理技术 2 3-1 System.IO 命名空间 2 3-1-1 System.IO类介绍 2 3-1-2 File类的常用方法 4 3-1-3 Fileinfo类的常用方法 5 3-1 Fileinfo类的常用方法 5 1.案例学习:了解FileInfo类的一些主要属性 6 2.案例学习:实现文件的复制 6 3.案例学习:获取文件基本信息 8 3-2 文件夹类Directory的常用方法 10 1.案例学习:了解Directory类的一些主要方法 10 2.案例学习:获取文件的基本信息 11 3-3 File类的常用操作的静态方法练习 14 1.案例学习:简易文本编辑器的开发案例 15 3-4 文件流类FileStream 17 1.FileStream文件流类简介 17 2.FileStream文件流类的创建 18 3-4 文件读写例子 20 3-3-1案例学习:文件流FileStream综合案例(一) 20 3-5 文件流FileStream综合案例 30 3-3-2 案例学习:文件流FileStream综合案例(二) 30 3-6 读写二进制文件 33 3-6-1 二进制文件读取器/编写器介绍 33 3-7 写二进制文件案例学习 35 1. 案例学习:写二进制文件案例——图片的存储与复制 35 3-8 读写内存流 39 3-8-1 读写内存流——MemoryStream类 40 3-8-2 MemoryStream类案例学习 41 3-8-3 读写缓存流——BufferedStream类 43 3-9 读写缓存流 ——BufferedStream类 43 3-9-1 读写缓存流 ——BufferedStream类 43 3-9-2 BufferedStream类案例学习 43 1.案例学习:通过缓冲区交换数据 43 3-6本章小结 45
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值