我正在研究Xamarin.Forms-UWP。 我想将存储在数据库中的字节数组转换为Windows Phone的pdf。 我知道如何转换 var base64Binarystr =“ABCDS” byte [] bytes = Convert.FromBase64String(base64Binarystr);
任何人都可以帮助展示pdf吗?只是一个指针 - 我有多个pdf文件,所以我无法将所有文件添加到应用程序或存储在磁盘上。
感谢您对此的任何指示。 谢谢!
答案 0 :(得分:1)
每个收到的文件都可以使用相同的名称存储(我使用" my.pdf")然后存储太多文件的风险。如果您需要缓存文件,那么您可以提供不同的名称。尽管我尝试了ms-appdata,但pdf查看器并不想显示Local,Temp或Downloads文件夹中的文件,所以我不得不将文件从Local文件夹移动到Assets以显示查看器的方式"想要& #34;它通过ms-appx-web。下载文件夹也存在CreationCollisionOption.ReplaceExisting的问题,如果文件已存在而不是替换它,则说无效参数,但Local和Temporary文件夹的行为正确。
/////////////// store pdf file from internet, move it to Assets folder and display ////////////////////
//bytes received from Internet. Simulated that by reading existing file from Assets folder
var pdfBytes = File.ReadAllBytes(@"Assets\Content\samplepdf.pdf");
try
{
StorageFolder storageFolder = ApplicationData.Current.LocalFolder; //or ApplicationData.Current.TemporaryFolder
StorageFile pdfFile = await storageFolder.CreateFileAsync("my.pdf", CreationCollisionOption.ReplaceExisting);
//write data to created file
await FileIO.WriteBytesAsync(pdfFile, pdfBytes);
//get asets folder
StorageFolder appInstalledFolder = Windows.ApplicationModel.Package.Current.InstalledLocation;
StorageFolder assetsFolder = await appInstalledFolder.GetFolderAsync("Assets");
//move file from local folder to assets
await pdfFile.MoveAsync(assetsFolder, "my.pdf", NameCollisionOption.ReplaceExisting);
}
catch (Exception ex)
{
}
Control.Source = new Uri(string.Format("ms-appx-web:///Assets/pdfjs/web/viewer.html?file={0}", "ms-appx-web:///Assets/my.pdf")); //local pdf