web-dev-qa-db-ja.com

C#-。txtファイルをTextBoxに読み込みます

次のコードを使用して、.txtファイルを複数行のテキストボックスに読み込もうとしています。ファイルダイアログボタンが完全に機能するようになりましたが、実際のテキストをファイルからテキストボックスに取り込む方法がわかりません。これが私のコードです。手伝ってくれますか?

private void button_LoadSource_Click(object sender, EventArgs e)
    {
        Stream myStream = null;
        OpenFileDialog openFileDialog1 = new OpenFileDialog();

        openFileDialog1.InitialDirectory = "c:\\";
        openFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*";
        openFileDialog1.FilterIndex = 2;
        openFileDialog1.RestoreDirectory = true;

        if (openFileDialog1.ShowDialog() == DialogResult.OK)
        {
            try
            {
                if ((myStream = openFileDialog1.OpenFile()) != null)
                {
                    using (myStream)
                    {
                        // Insert code to read the stream here.
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("Error: Could not read file from disk. Original error: " + ex.Message);
            }
        }
    }
5
Jeagr

完全なテキストが必要な場合は、関数 File.ReadAllText -ダイアログで選択したファイル名/パスを渡します( openFileDialog1.FileName )。

たとえば、コンテンツをテキストボックスにロードするには、次のように記述します。

 textbox1.Text = File.ReadAllText(openFileDialog1.FileName);

ストリームを開いて使用するのは少し複雑です。そのため、using-ステートメントを調べる必要があります。

24
user287107