用于文件传输的C#远程流不读取

时间:2011-11-18 09:43:05

标签: c# file tcp stream streamwriter

我写了一些“更新程序”,以便为我的开发团队的其余部分保持.exe更新。它过去工作正常,但突然间它停止工作。

我已经注意到了这个问题:我的远程流没有开始阅读。

        Uri patch = new Uri("http://********/*********/" + GetVersion().ToString() + ".exe");
        Int64 patchsize = PatchSize(patch);
        var CurrentPath = String.Format("{0}\\", Environment.CurrentDirectory);
        Int64 IntSizeTotal = 0;
        Int64 IntRunning = 0;
        string strNextPatch = (version + ".exe");

        using (System.Net.WebClient client = new System.Net.WebClient())
        {
            using (System.IO.Stream streamRemote = client.OpenRead(patch))
            {
                using (System.IO.Stream streamLocal = new FileStream(CurrentPath + strNextPatch, FileMode.Create, FileAccess.Write, FileShare.None))
                {
                    int intByteSize = 0;

                    byte[] byteBuffer = new Byte[IntSizeTotal];

                    while ((intByteSize = streamRemote.Read(byteBuffer, 0, byteBuffer.Length)) > 0)
                    {
                        streamLocal.Write(byteBuffer, 0, intByteSize);

                        IntRunning += intByteSize;

                        double dIndex = (double)(IntRunning);
                        double dTotal = (double)byteBuffer.Length;
                        double dProgressPercentage = (dIndex / dTotal);
                        int intProgressPercentage = (int)(dProgressPercentage * 100);

                        worker.ReportProgress(intProgressPercentage);
                    }
                    streamLocal.Close();
                }
                streamRemote.Close();

GetVersion()仅返回当前服务器版本的.exe的当前版本号。 问题出在这里:

while ((intByteSize = streamRemote.Read(byteBuffer, 0, byteBuffer.Length)) > 0)

我的streamRemote只是不返回任何字节,所以这个while子句没有被填充。

对我有什么建议吗?

1 个答案:

答案 0 :(得分:0)

我认为问题出在服务器上。我会做一些检查:

  • Web服务器的配置是否有任何更改阻止您下载可执行文件?
  • 您是通过代理连接吗?
  • 您可以手动访问相同的网址(在应用程序的相同用户凭据下)吗?