クライアントであるこのc#プログラムは、サーバーからファイルを受信します。時にはそれはシームレスに機能します。で例外が発生することもありますfileName = Encoding.ASCII.GetString(dataByte, 4, fileNameLen);
。
ArgumentOutOfRange Exception
Index and count must refer to a location within the buffer.
Parameter name: bytes
の値fileNameLen
が8
またはの場合、12
適切に機能します。それ以外の場合は になります1330795077
。何故ですか?誰かが私にこれがなぜなのか説明できますか? お願いします。これが私のコードです。
string fileName = string.Empty;
int thisRead = 0;
int blockSize = 1024;
Byte[] dataByte = new Byte[blockSize];
lock (this)
{
string folderPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)+"\\";
ns.Read(dataByte, thisRead, blockSize);
int fileNameLen = BitConverter.ToInt32(dataByte, 0);
fileName = Encoding.ASCII.GetString(dataByte, 4, fileNameLen);
Stream fileStream = File.OpenWrite(folderPath + fileName);
fileStream.Write(dataByte, 4 + fileNameLen, (1024 - (4 + fileNameLen)));
while (true)
{
thisRead = ns.Read(dataByte, 0, blockSize);
fileStream.Write(dataByte, 0, thisRead);
if (thisRead == 0)
break;
}
fileStream.Close();
}