System.ArgumentException:目标数组不够长

时间:2012-08-04 14:14:20

标签: c# tcpclient

我正在尝试使用tcp服务,要求我将ID作为字符串发送。我从示例代码中获得了以下方法。 我的问题是,当我输入带有4个字符数字的字符串,如“4000”,“2000”,“3000”时,该方法可以工作,但是当我输入的字符串少于4个字符“1”,“20”或“300” 它返回

  

System.ArgumentException:目标数组不够长。校验   destIndex和length,以及数组的下限。

 public byte[] prepNetworkStreamBuffer(string reqiiredID) {
        byte[] id = UTF8Encoding.UTF8.GetBytes(reqiiredID);
        int l = id.Length;
        byte[] idb = BitConverter.GetBytes(System.Net.IPAddress.HostToNetworkOrder(l));

        byte[] buff = new byte[1 + 1 + id.Length + l];
        buff[0] = 0;
        buff[1] = (byte)VerificationServiceCommands.addIDtoAFIS;
        idb.CopyTo(buff, 1 + 1);
        id.CopyTo(buff, 1 + 1 + idb.Length);

        return buff;
    }

3 个答案:

答案 0 :(得分:0)

我怀疑问题是缓冲区长度是

1 + 1 + id.Length + l

什么时候应该

1 + 1 + idb.Length + l
        ^^^

检查此问题的最佳方法是启动调试器并查看buff的长度。

答案 1 :(得分:0)

您正在将idbid复制到buff,其大小只有2*id.Length + 2

因此当id的尺寸仅为3时,您的buff太小而不适合idb,其大小为4。

你想:

byte[] buff = new byte[1 + 1 + id.Length + idb.Length];

答案 2 :(得分:0)

    public static bool TryGetArray(ref SomeObject[] source )
    {
        try
        {
            var localSource = new List<SomeObject>{new SomeObject(), new SomeObject()};

            var temp = new SomeObject[localSource.Count + source.Length];
            Array.Copy(source, temp, source.Length);
            Array.ConstrainedCopy(localSource.ToArray(), 0, temp, source.Length, localSource.Count);
            source = temp;
        }
        catch
        {
            return false;
        }
        return true;
    }