2

我需要的帮助是知道如何将每个长度为 1024 字节的多个字节数组组合成一个字节数组来创建文件。

我需要这样做,因为我必须将多个文件发送到 SAP,但是文件必须拆分为 1024(字节 [1024])的字节数组,并且在我拆分文件后,我将这些文件保存到一个集合中,并且我遇到的问题是在 SAP 中创建文件时,这个文件已损坏。我想在拆分文件时放弃任何问题

这是我用来分割文件的方法

for (int i = 0; i < attachRaw.Count(); i++)
        {
            countLine = attachRaw[i].content.Length / 1024;
            if (attachRaw[i].content.Length % 1024 != 0)
                countLine++;
            ZFXX_ATTATTACHMENT_VBA[] attachArray = new ZFXX_ATTATTACHMENT_VBA[countLine];               
            for (int y = 0; y < countLine; y++)
            {
                ZFXX_ATTATTACHMENT_VBA attach = new ZFXX_ATTATTACHMENT_VBA();
                attach.CONTENT = new byte[i == (countLine - 1) ? (attachRaw[i].content.Length - i * 1024) : 1024];
                if (i == (countLine - 1))
                {
                    countLine++;
                    countLine--;
                }
                if (attachRaw[i].content.Length < 1024)
                {
                    attach.CONTENT = attachRaw[i].content;
                }
                else
                {
                    attach.CONTENT = FractionByteArray(i * 1024, (i == (countLine - 1) ? attachRaw[i].content.Length : (i * 1024 + 1024)), attachRaw[i].content);
                }
                attach.FILE_LINK = attachRaw[i].fileLink;
                attachmentRaw.Add(attach);

            }

        }


private static byte[] FractionByteArray(int start, int finish, byte[] array)
    {
        byte[] returnArray = new byte[finish - start];

        for (int i = 0; i < finish - start; i++)
        {
            returnArray[i] = array[start + i];
        }
        return returnArray;
    }
4

1 回答 1

8

您可以使用BlockCopy加入所有阵列。

就像是:

    private byte[] JoinArrays(IEnumerable<byte[]> arrays)
    {
        int offset = 0;
        byte[] fullArray = new byte[arrays.Sum(a => a.Length)];
        foreach (byte[] array in arrays)
        {
            Buffer.BlockCopy(array, 0, fullArray, offset, array.Length);
            offset += array.Length;
        }
        return fullArray;
    }
于 2013-02-25T03:36:36.220 回答