与webapplication不同,我想查看pdf内容而不将其存储在物理位置。我有数组的字节只需要以pdf格式显示它。
下面的代码适用于webapplication,但我正在寻找Windows控制台应用程序。
Response.Clear();
Response.ContentType = "application/pdf";
Response.AppendHeader("Content-Disposition", "inline;filename=data.pdf");
Response.BufferOutput = true;
byte[] pdf;
Response.AddHeader("Content-Length", response.Length.ToString());
Response.BinaryWrite(pdf);
Response.End();
答案 0 :(得分:0)
我这里只看到两个选项。不幸的是,其中一个是不可行的,而另一个并不完全适合你的标准。我们来看看:
编辑:你为什么要避免写文件?如果你画出大局,我们或许可以找到解决问题的方法。