c#下载文件,但端口不同
本文关键字:下载 文件 | 更新日期: 2023-09-27 17:49:57
这里需要帮助,即使我搜索了这个错误的解决方案仍然无法帮助我…
我想下载文件与HTTP协议,但不同的端口,这意味着不使用端口80,但其他端口,如5151。代码在c#中运行良好,编译时没有任何错误。在调试过程中,它说无法找到路径/URL,但路径/URL在我的浏览器中运行良好,端口为5151 (http://localhost:5151
, work great).
你知道怎么做吗?
以下是代码,是否还缺少什么需要我补充的?
client = new WebClient();
try
{
client.DownloadFile(@""+httpAddr + ":5151/factionusers.log", "factionusers.log");
}
catch
{
client.DownloadFile(@""+httpAddr2 + ":5151/factionusers.log", "factionusers.log");
}
可以在httpAddr变量中添加"/"。
static void Main()
{
string httpAddr = "http://192.168.56.101";
var client = new WebClient();
try
{
client.DownloadFile(@"" + httpAddr + ":5151/readme.txt", "readme.txt");
}
catch
{
client.DownloadFile(@"" + httpAddr + ":5151/readme.txt", "readme.txt");
}
}
在我的电脑。