导入和教程的教程导出excel文件

时间:2013-11-04 13:52:58

标签: c# excel windows-phone-8

应该在我的Windows Phone 8应用程序中导入学生列表。我做了一些研究并找到了例子,但它对我不起作用:

 IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication();

if (store.FileExists("services.txt"))
{
    using (var stream = new IsolatedStorageFileStream("services.txt", FileMode.Open, store))
    {
        using (var fileReader = new StreamReader(stream))
        {
            result = fileReader.ReadToEnd();
        }
    }
}
string[] tmp = result.Split(new char[] { '\r', '\n', '.' });
foreach (string str in tmp)
{
    System.Diagnostics.Debug.WriteLine(str);
}

0 个答案:

没有答案