gpt4 book ai didi

c# - 文件流到字节 [] : Windows XP vs Windows 8

转载 作者:可可西里 更新时间:2023-11-01 08:49:48 25 4
gpt4 key购买 nike

我最近不得不写一些代码:

  • UI取一个文件(图片)
  • 转换为`byte[]
  • 上传 byte[]到网站(使用 HttpWebRequestContentTypemultipart/form-data )
  • 网站然后读取流,使用我随文件发送的参数,存储 byte[]在数据库中。

此图像随后会在报告中使用,用户可以随时下载该图像。在我们开始在 Windows XP 机器上测试它之前,它运行良好。每当我从 XP 电脑上传任何图像时,图像都不会显示。经过一些调试和测试并编写此 multipart/form-data到一个文本文件,我看到 byte[] Windows XP 与 Windows 8(甚至 7)上的文件不同。生成的文件大小也不同。

我将 VS2012 与 .Net 4.0 一起使用,并在 XP 电脑上安装(并再次修复).Net 4。我只能认为这两个操作系统的编码方式不同,或者可能是 32 位操作系统和 64 位操作系统之间的差异。显然我不知道哪里出了问题,甚至不知道从哪里开始。我想知道是否有人可以为我指出正确的方向?

这是 UI 端代码:

//Wrapped around each parameter. The last boundary after the byte[] file >has been omitted.
string boundary = "----------------------------" + >DateTime.Now.Ticks.ToString("x");

//Creating the httpWebRequest as multipart with "POST" method.
httpWebRequest = (HttpWebRequest)WebRequest.Create(_webUploadUrl);
httpWebRequest.ContentType = "multipart/form-data; boundary=" + boundary;
httpWebRequest.Method = "POST";
httpWebRequest.KeepAlive = true;
httpWebRequest.Credentials = >System.Net.CredentialCache.DefaultCredentials;

//Upload stream will be built with all the parameters, followed by the >byte[] file.
Stream uploadStream = new System.IO.MemoryStream();


byte[] boundarybytes = System.Text.Encoding.ASCII.GetBytes(boundary + >"\r\n");


string formdataTemplate = "\r\n--" + boundary +
"\r\nContent-Disposition: form-data; name=\"{0}\";\r\n\r\n{1}";

//Parameters:
//Foreach parameter, Wrap in boundary
foreach (string key in _nvcParameters.Keys)
{
string formitem = string.Format(formdataTemplate, key, >_nvcParameters[key]);
byte[] formitembytes = System.Text.Encoding.UTF8.GetBytes(formitem);
uploadStream.Write(formitembytes, 0, formitembytes.Length);
}

byte[] netBytes = System.Text.Encoding.ASCII.GetBytes("\r\n--");
uploadStream.Write(netBytes, 0, netBytes.Length);

//The actual file:
uploadStream.Write(boundarybytes, 0, boundarybytes.Length);
string headerTemplate = "Content-Disposition: form-data; name=\"{0}\"; >filename=\"{1}\"\r\n Content-Type: application/octet-stream\r\n\r\n";
string header = string.Format(headerTemplate, "uplTheFile", _fileName);
byte[] headerbytes = System.Text.Encoding.UTF8.GetBytes(header);
uploadStream.Write(headerbytes, 0, headerbytes.Length);

//While file is greater than buffer, write to uploadStream.
byte[] buffer = new byte[1024];
int bytesRead = 0;
long fileSize = pFileStream.Length;
long uploadedValue = 0;

while ((bytesRead = (pFileStream).Read(buffer, 0, buffer.Length)) != 0)
{
uploadStream.Write(buffer, 0, bytesRead);
Application.DoEvents();
}
httpWebRequest.ContentLength = uploadStream.Length;
//Close the original fileStream.
pFileStream.Close();

该网站使用 UTF8。如果需要我可以发布它,但是因为 byte[]不同,我认为问题可能在那里。


@Ramhound 使用时间长吗?你指的是 fileSizeuploadedValue变量?该代码是系统的公司 UI 端的一部分,非常大,我才刚刚开始了解某些部分,无论如何,我已经检查了项目的属性(如果这是正确的检查位置)。在构建时,平台目标是 x86。你是在说那个还是别的什么?抱歉,我仍然是一名学生,并且是 c# 的新手(以及与此相关的 vs)

我已经在 Windows 8 机器上打开了这两个文件。显然,win8 文件大小大 6kb,包含更多字符。

这是数组的前几行。 _ncvParameters是相同的(以及上传的文件,这是生成的多部分形式的第一部分(ncvParameters 后跟 byte[] 文件的前几行):

Win8:

------------------------------8d00a632401f30e Content-Disposition: form-data; name="o";

25 ------------------------------8d00a632401f30e Content-Disposition: form-data; name="k";

2913 ------------------------------8d00a632401f30e Content-Disposition: form-data; name="u";

255 ------------------------------8d00a632401f30e Content-Disposition: form-data; name="f";

Blue hills.jpg ------------------------------8d00a632401f30e Content-Disposition: form-data; name="m";

image/jpeg ------------------------------8d00a632401f30e Content-Disposition: form-data; name="uplTheFile"; filename="Blue hills.jpg" Content-Type: application/octet-stream

‰PNG

IHDR  €  à   5ÑÜä   sRGB ®Îé   gAMA  ±üa      pHYs  à  ÃÇo¨d  ÿ¥IDATx^ìýg—\7²­ëÿ÷¾gïî–§÷¤H9Š¢DR”—Ú{Ç6²”÷M‘yç¹V$™UÅ–úô>÷|˜@

˜ÌÄ2y×?oݾøáíÛWþ±õŸ†[w€‘õøû-pëÊßnï㺷Ã؇uxK¾í

操作系统:

------------------------------8d00a639ff7bf76 Content-Disposition: form-data; name="o";

25 ------------------------------8d00a639ff7bf76 Content-Disposition: form-data; name="k";

2913 ------------------------------8d00a639ff7bf76 Content-Disposition: form-data; name="u";

255 ------------------------------8d00a639ff7bf76 Content-Disposition: form-data; name="f";

Blue hills.jpg ------------------------------8d00a639ff7bf76 Content-Disposition: form-data; name="m";

image/jpeg ------------------------------8d00a639ff7bf76 Content-Disposition: form-data; name="uplTheFile"; filename="Blue hills.jpg" Content-Type: application/octet-stream

‰PNG

IHDR         ĉ   sRGB ®Îé   gAMA  ±üa    cHRM  z&  €„  ú   €è  u0  ê`  :˜  pœºQ<   IDATWc`    ªÕÈQ   

IEND®B`‚’èÊû:uÊžòÞ°Ë[=)Qä¡w¢%º2§Î~󙉬½×f±¤~¯×1‰H$01#ùßÿâ‹ÿ¯¿¸äÿý‡‹—ü;üX§¿8(ýQ$?º$ÓÿþéÚêÀBTÿpà%•~ÖbºËá þÝü8ù­Ÿ:å_ø(IÿGã‹þâ/Æ Cô¨Í.*›QV


@Xaqron - uploadStream 是 memoryStream .整个多部分形式写入此流,然后写入 byte[] .哪个流式传输到httpWebRequest .

我很确定它是同一张图片。我试了两次只是为了确定。我今天会在办公室进行三次检查 - 是的,我已经检查过多次了。相同的图像产生不同的尺寸和不同的byte[]字符。


好的,我想我已经找到问题所在了。这可能是有用的信息,但我什至不认为这会是问题所在。上传的文件是我调整大小的图像。调整大小的方法需要一个 byte[] (我认为编码不正确的那个),将其写入位图。然后使用 PixelFormat.Format32bppRgb 将此位图“重绘”为新大小和 InterpolationMode.HighQualityBicubic :

if (pImage.Height < maxHeight && pImage.Width < maxWidth) return pImage;  
using (pImage)
{
Double xRatio = (double)pImage.Width / maxWidth;
Double yRatio = (double)pImage.Height / maxHeight;
Double ratio = Math.Max(xRatio, yRatio);
int nnx = (int)Math.Floor(pImage.Width / ratio);
int nny = (int)Math.Floor(pImage.Height / ratio);
System.Drawing.Bitmap cpy = new System.Drawing.Bitmap(nnx, nny, System.Drawing.Imaging.PixelFormat.Format32bppRgb);
using (System.Drawing.Graphics gr = System.Drawing.Graphics.FromImage(cpy))
{
gr.Clear(System.Drawing.Color.Transparent);

gr.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;

gr.DrawImage(pImage,
new System.Drawing.Rectangle(0, 0, nnx, nny),
new System.Drawing.Rectangle(0, 0, pImage.Width, pImage.Height),
System.Drawing.GraphicsUnit.Pixel);
}
return cpy;
}

我更改了 PixelFormat模式为“DontCare”和InterpolationModeDefault .抱歉,这很明显,但我认为这是由 .net 框架处理的?

最佳答案

Windows XP 和较新的操作系统(如 7 和 8)的编码和解码方式不同。我可以为您建议的是在传输之前将您的字节数组编码为 BASE64。然后接收它并解码回您的字节数组。 .Net 有简单的方法来编码和解码 base64。由于 base64 文本是 7 位 ascii,因此传输它不会有问题。

关于c# - 文件流到字节 [] : Windows XP vs Windows 8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16089294/

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