如何解析本地CSV文件wp7

本文关键字:文件 wp7 CSV 何解析 | 更新日期: 2023-09-27 18:03:10

我正在开发一个wp7应用程序,我需要读取CSV文件并存储到列表

CSV文件有20行,名字,姓氏用逗号分隔

和我试图使用http://kbcsv.codeplex.com/这个和http://www.codeproject.com/articles/25133/linq-to-csv-library当我试图包括这些dll得到"windows phone项目将只与windows phone组件工作"错误

如何在Windows phone 7中解析CSV文件

thanks in advance

如何解析本地CSV文件wp7

使用IsolatedStorageFileStream从保存的路径位置获取并打开文件。然后使用StreamReader对象读取。

    IsolatedStorageFileStream fileStream = storage.OpenFile(filePath, FileMode.Open, FileAccess.Read);
    using (StreamReader reader = new StreamReader(fileStream))
    {
      string line;
      while ((line = reader.ReadLine()) != null)
      {
        string[] temp1Arr = line.Split(',');
        //Manipulate your string values stored in array here 
      }
    }

希望有帮助!