从字节数组ios xamarin c#中打开pdf
本文关键字:pdf xamarin 字节 字节数 数组 ios | 更新日期: 2023-09-27 18:15:32
我有一个包含pdf文档的字节数组,我想在ios应用程序中打开它。
这是我到目前为止的代码:
public static string WriteFileFromByteArray(string fileName, byte[] bytes)
{
var documentsPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
var filePath = Path.Combine(documentsPath, fileName);
File.WriteAllBytes(fileName, bytes);
return filePath;
}
有人知道怎么做吗?
不知道你到底在哪里卡住了。但是你发布的下面一行代码有一个问题。
File.WriteAllBytes(**fileName**, bytes);//
在此代码中,您使用的是filename而不是filepath。
使用filePath
变量代替fileName
,因为它只包含文件名。
请参阅下面的PDF查看器链接。
http://forums.xamarin.com/discussion/631/open-a-pdf-with-the-built-in-pdf-viewer