gpt4 book ai didi

c# - 可能带有 URL 的 Response.WriteFile?

转载 作者:行者123 更新时间:2023-11-30 21:22:38 31 4
gpt4 key购买 nike

我希望能够做到这一点:

Response.WriteFile ("http://domain/filepath/file.mpg")

但是,我得到这个错误:

Invalid path for MapPath 'http://domain/filepath/file.mpg' 
A virtual path is expected.

WriteFile 方法似乎不适用于 URL。有没有其他方法可以将 URL 的内容写入我的页面?

谢谢。

最佳答案

如果您需要代码以这种方式工作,那么您必须先将其动态下载到您的服务器上:

HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://domain/filepath/file.mpg");
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
Stream file = response.GetResponseStream();

从那时起,您将文件的内容作为流,您将必须读取/写入字节以响应。

不过,我要提一下,这不一定是最优的——您会消耗带宽,因为每个文件都将使用比必要更多的资源。

如果可能,将文件移动到您的服务器,或者重新考虑您正在尝试做什么。

关于c# - 可能带有 URL 的 Response.WriteFile?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2194342/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com