winform怎么读取本地文件

1348
2023/12/2 19:55:27
栏目: 智能运维
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在WinForms中,可以使用OpenFileDialog对话框来读取本地文件。以下是一个简单的示例:

private void ReadFileButton_Click(object sender, EventArgs e)
{
    OpenFileDialog openFileDialog = new OpenFileDialog();
    
    if (openFileDialog.ShowDialog() == DialogResult.OK)
    {
        string filePath = openFileDialog.FileName;
        
        // 使用适当的方式读取文件内容
        // 例如,使用StreamReader来读取文本文件的内容
        using (StreamReader reader = new StreamReader(filePath))
        {
            string fileContent = reader.ReadToEnd();
            
            // 将文件内容显示在文本框中
            fileContentTextBox.Text = fileContent;
        }
    }
}

在上面的示例中,当用户点击一个按钮(例如ReadFileButton)时,会弹出一个OpenFileDialog对话框,用户可以选择要读取的本地文件。一旦用户选择了文件并点击了“确定”按钮,就可以获取选中文件的路径(openFileDialog.FileName),然后使用适当的方法(例如使用StreamReader)读取文件的内容。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: Winform MessageBox定制提示有秘诀吗