Request.Files[0].InputStream 上传后显示不同的长度

发布于 2024-12-08 13:24:45 字数 903 浏览 3 评论 0原文

当用户将文件上传到我的服务器时,我尝试创建文件的 MD5,并将该请求与发布的文件一起转发到我的服务,该服务使用以下方法重新检查发布文件的 MD5。

这始终会在服务端显示 Request.Files[0].InputStream 的不同长度。我是否遗漏了为什么这会显示已发布文件的长度不正确?

if (context.Request.Files.Count > 0)
        {
            byte[] fileData = null;
            using (var binaryReader = new BinaryReader(context.Request.Files[0].InputStream))
            {
                fileData = binaryReader.ReadBytes((int)context.Request.Files[0].InputStream.Length);
                binaryReader.Close();
            }

            using (MD5 md5 = MD5.Create())
            {
                byte[] hashData = md5.ComputeHash(fileData);

                //loop for each byte and add it to StringBuilder
                for (int i = 0; i < hashData.Length; i++)
                {
                    FileMD5Hash.Append(hashData[i].ToString());
                }
            }
        }

I am trying to create MD5 of the file when user uploads it to my server and forward that request along with posted file to my service which rechecks the MD5 of the posted file using the following method.

This always shows different length for Request.Files[0].InputStream on the service end. Is there something i am missing as to why this would show incorrect length for posted file?

if (context.Request.Files.Count > 0)
        {
            byte[] fileData = null;
            using (var binaryReader = new BinaryReader(context.Request.Files[0].InputStream))
            {
                fileData = binaryReader.ReadBytes((int)context.Request.Files[0].InputStream.Length);
                binaryReader.Close();
            }

            using (MD5 md5 = MD5.Create())
            {
                byte[] hashData = md5.ComputeHash(fileData);

                //loop for each byte and add it to StringBuilder
                for (int i = 0; i < hashData.Length; i++)
                {
                    FileMD5Hash.Append(hashData[i].ToString());
                }
            }
        }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↘人皮目录ツ 2024-12-15 13:24:45

这不是创建 byte[] 的正确方法。我使用了内存流的 toArray(),它对我来说工作得很好。

This was not the right way to create byte[]. I used memorystream's toArray(), and it's working beautifully for me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文