- if(odfImport.ShowDialog()==DialogResult.ok)//如果用户点击的是确定按钮
- {
- using(FileStream fileStream=File.OpenRead(odfImport.FileName))//打开odfImport.FileName文件进行读取
- {
- using(StreamReader streamReader = new StreamReader(fileStream,Encoding.Default))//以系统默认编码从fileStream中读取字符
- {
- String line=null;
- while(line=streamReader.ReadLine()!=null)//当读取的当前行不为空时
- {
- string[]strs=line.Split('|');//把读取出来的当前行字符串按'|'进行分割成字符串数组
- }
- }
- }
- }
复制代码 |