程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> 關於C# >> C#多線程delegate委托方式讀取多文件到同一個文本框顯示

C#多線程delegate委托方式讀取多文件到同一個文本框顯示

編輯:關於C#

今天,有個網友,提問:

指定目錄中有若干個很小的文本文件,現在需要使用多線程進行讀取。

一個文件一個線程或設置共有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");
        }
    }
}

放在這裡,給大家一個參考吧。

出處:http://www.zu14.cn/

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved