gpt4 book ai didi

c# - 使用 httpwebrequest/httpwebresponse 从服务器到客户端的 Docx 文件传输

转载 作者:塔克拉玛干 更新时间:2023-11-01 19:14:09 24 4
gpt4 key购买 nike

在 C# 中,我必须使用 HttpWebRequest/HttpWebResponse 类编写从服务器应用程序发送到客户端应用程序的 Docx 文件代码,无需 Web 浏览器。

我已经研究过套接字 (TCP/IP),它工作得非常好。但是我想用 http 协议(protocol)运行。我在这里使用 Apache Tomcat 7 作为网络服务器。

例如:服务器(应用程序)将特定的word文件分配给客户端(应用程序),然后客户端使用apache tomcat web服务器在HTTP协议(protocol)的帮助下下载分配的文件

注意:我没有使用 WCF 服务,我只使用 Windows 应用程序..所以请按照要求的方式告诉我..

提前致谢...

最佳答案

这是一个简单的例子;

        string myFileName = @"c:\temp\sample.docx";

using (WebClient wc = new WebClient())
{
wc.Proxy = null;
wc.DownloadFile("http://urlhere/Test.docx", myFileName);
}

关于c# - 使用 httpwebrequest/httpwebresponse 从服务器到客户端的 Docx 文件传输,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6955326/

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