Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 php 页面,它访问了一个 aspx 页面http://server/default.aspx?xml=abc,该文件使用在查询字符串中发送的 xml 创建一个 PDF,并将其存储在 .net 服务器上。
http://server/default.aspx?xml=abc
现在,我怎样才能得到生成的 PDF 文件的字节数组???我也想知道如何从 aspx 生成响应
注意:我已经完成,直到在 asp 中生成 bytearray
它将打开一个文件并将二进制响应写回调用者。
using(var file = new FileStream("", FileMode.Open, FileAccess.Read)) { var byteArray = new byte[file.Length]; var br = new BinaryReader(file); byteArray = br.ReadBytes((int)file.Length); Response.BinaryWrite(byteArray); }