zoukankan      html  css  js  c++  java
  • 打开文件并读取文件内容

     public partial class MainWindow : Window
        {
            private OpenFileDialog openFileDialog = null;
           
            public MainWindow()
            {
               InitializeComponent();
               openFileDialog = new OpenFileDialog();
               openFileDialog.FileOk += openFileDialogFileOk;


            }


            private void openBtn_Click(object sender, RoutedEventArgs e)
            {
                openFileDialog.ShowDialog();
            }


          


            private void openFileDialogFileOk(object sender, System.ComponentModel.CancelEventArgs e)
            {
                string fullPathName = openFileDialog.FileName;
                FileInfo str = new FileInfo(fullPathName);
                fileNameText.Text = str.Name;
                contentText.Text = "";
                TextReader reader = str.OpenText();
                string line = reader.ReadLine();
                while (line != null)
                {
                    line = reader.ReadLine();
                    contentText.Text +=line +' ';
                   
                }
                reader.Close();




            }
        }
    If opportunity doesn’t knock, build a door
  • 相关阅读:
    Node.js理解
    PayPal为什么从Java迁移到Node.js
    移动开发技巧总结
    Flex性能调优相关的一些总结
    Flex组件的生命周期
    Adobe Flash Builder 4.7 新功能详解
    【Django】Cookie
    【Django】路由系统
    【Django】视图系统
    【Django】ORM操作#2
  • 原文地址:https://www.cnblogs.com/CandiceW/p/4204565.html
Copyright © 2011-2022 走看看