将流直接返回到 Web 浏览器
我正在服务器上生成一个文件,但我不想将其写入磁盘,而是通过 Web 服务将其返回给客户端。 这样做你有什么建议?
I am generating a file on the server and I do not want to write it to disk but instead return it to the client via a web service. What recommendations would you have to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
或者,如果您有 MemoryStream:
编辑:
如果它是 SOAP Web 服务,则只需从 asmx.cs 文件中的 Web 服务方法返回一个字节数组
Or if you have a MemoryStream:
Edit:
If it's a SOAP web service, then just return a byte array from your web service method in your asmx.cs file