Request.Files[0].InputStream 上传后显示不同的长度
当用户将文件上传到我的服务器时,我尝试创建文件的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是创建 byte[] 的正确方法。我使用了内存流的 toArray(),它对我来说工作得很好。
This was not the right way to create byte[]. I used memorystream's toArray(), and it's working beautifully for me.