我在数据库中有一个字节数组,我需要以 pdf 文件格式显示它。这是我这样做的方式。但是,这不适用于 Android 平板电脑(在 2.3.5 和 3.2 中检查)。
Response.Clear();
Response.ContentType = "application/octet-stream";
Response.BufferOutput = true;
Response.Buffer = false;
Response.AddHeader("Content-Length", binaryData.Length.ToString());
Response.AppendHeader("Content-Disposition", "inline;filename=ClientDocument.PDF");
// Response.BinaryWrite(binaryData);
Response.OutputStream.Write(binaryData, 0, binaryData.Length);
Response.End();
你们能想出什么方法可以让它在所有浏览器上运行吗?
感谢帮助
谢谢