如何解析本地CSV文件wp7

时间:2013-03-09 12:52:59

标签: c# windows-phone-7 csv

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

csv文件是20行,名字,姓氏,(逗号)

我尝试使用http://kbcsv.codeplex.com/这个和http://www.codeproject.com/articles/25133/linq-to-csv-library,当我想要包含那些dll时,“windows phone项目只适用于Windows手机程序集”错误 < / p>

如何在Windows Phone 7中解析csv文件

提前致谢

1 个答案:

答案 0 :(得分:0)

使用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 
      }
    }

希望它有所帮助!