C# 多线程delegate委托方式读取多文件到同一个文本框显示

13 篇文章 1 订阅
1 篇文章 0 订阅
该代码示例展示了如何在WindowsForms应用中,通过多线程读取指定目录下的多个小文本文件,并将内容追加到一个共享的编辑框中。每个文件由一个单独的线程处理,使用委托调用UI线程更新文本,确保了线程安全。
摘要由CSDN通过智能技术生成
指定目录中有若干个很小的文本文件,现在需要使用多线程进行读取。

一个文件一个线程或设置共有10个线程之类的方式都可以。

把读取的文本全部追加到窗口中的指定编辑框中,只有一个编辑框,都写在这个里面,不分顺序,换行即可。 

用委托的方式,写了下面的解决方法:

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;
using System.Threading;

namespace MultiThread
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            using (FolderBrowserDialog fbd = new FolderBrowserDialog())
            {
                fbd.Description = "选择要多线程读取文件的路径";
                fbd.ShowNewFolderButton = false;
                if (fbd.ShowDialog(this) == DialogResult.OK)
                {
                    DirectoryInfo di = new DirectoryInfo(fbd.SelectedPath);
                    foreach (FileInfo fi in di.GetFiles("*.txt"))
                    {
                        Thread t = new Thread(this.InvokeThread);
                        t.Start(fi.FullName);
                    }
                }
            }
        }

        private delegate void ReadFile(object filePath);

        private void InvokeThread(object filePath)
        {
            if (this.InvokeRequired)
            {
                this.Invoke(new ReadFile(ReadFileContent), filePath);
            }
            else
            {
                ReadFileContent(filePath);
            }
        }


        private void ReadFileContent(object filePath)
        {
            this.textBox1.AppendText(File.ReadAllText(filePath.ToString(), Encoding.Default));
            this.textBox1.AppendText("\r\n");
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值