我要做的是从闪存驱动器将pdf加载到内存中,然后通过acrobat reader读取pdf。这个想法是,如果用户移除闪存,他/她仍然可以读取pdf,因为它已被加载到内存/ RAM中。 我试着使用下面的代码来自这个帖子 Save and load MemoryStream to/from a file
这用于写入文件
FileStream file = new FileStream("file.bin", FileMode.Create, System.IO.FileAccess.Write);
byte[] bytes = new byte[ms.Length];
ms.Read(bytes, 0, (int)ms.Length);
file.Write(bytes, 0, bytes.Length);
file.Close();
ms.Close();
这用于读取文件
MemoryStream ms = new MemoryStream();
FileStream file = new FileStream("file.bin", FileMode.Open, FileAccess.Read);
byte[] bytes = new byte[file.Length];
file.Read(bytes, 0, (int)file.Length);
ms.Write(bytes, 0, (int)file.Length);
file.Close();
ms.Close();
我对编程比较陌生,我正在努力学习c#。这可能看起来像一个愚蠢的问题,但我无法理解如何实现代码。 谢谢你的帮助:)
答案 0 :(得分:0)
将文件下载到某个位置,然后从fileLocation将文件加载到Adobe中。我不确定您是否可以直接将内存流传递给Adobe Reader。
获取PDF文件的路径并执行以下操作:
//Get the path
var path = @"C:\Users\MyUser\My Documents\MyPdf.pdf"
//Open adobe reader with the file
Process.Start(path);