如何在WP8 App中打开excel表

时间:2014-08-15 09:54:10

标签: excel windows-phone-8

如何使用Windows Phone 8 App打开Excel表格。我从服务中获取了一个文件bin(byte [])。

有什么想法吗? 谢谢迈克尔

1 个答案:

答案 0 :(得分:0)

很容易!使用这3行,您可以在Windows phone 8.x

上查看每个文件
            StorageFolder attachmentFolder = await ApplicationData.Current.LocalFolder.CreateFolderAsync(ViewModelLocator.ATTACHMENT_FOLDER, CreationCollisionOption.OpenIfExists);
            StorageFile storageFile = await attachmentFolder.GetFileAsync(fileName);
            var success = await Windows.System.Launcher.LaunchFileAsync(storageFile);

如果您使用LaunchFileAsync API http://msdn.microsoft.com/en-us/library/windows/apps/Hh701471.aspx?cs-save-lang=1&cs-lang=csharp#code-snippet-1,则该文件将由已注册处理pdf文件扩展名的应用程序打开 - 可能是PDF阅读器应用程序。但如果没有安装合适的应用程序,用户将被带到商店选择一个安装。

适用于WP8.0和8.1。

感谢Andy Wigley!