简体   繁体   English

C#将文件拆分为两个字节数组

[英]C# Split a file into two byte arrays

Because the maximum value of a byte array is 2GB, lets say i have a larger file and i need to convert it to a byte array. 因为字节数组的最大值为2GB,所以可以说我有一个更大的文件,我需要将其转换为字节数组。 Since i can't hold the whole file, how should i convert it into two? 由于我无法保存整个文件,应如何将其转换为两个?

I tried: 我试过了:

long length = new System.IO.FileInfo(@"c:\a.mp4").Length;
int chunkSize = Convert.ToInt32(length / 2); 


byte[] part2;
FileStream fileStream = new FileStream(filepath, FileMode.Open, FileAccess.Read);
try
{
    part2 = new byte[chunkSize];            // create buffer
    fileStream.Read(part2, 0, chunkSize);
}
finally
{
    fileStream.Close();
}

byte[] part3;
fileStream = new FileStream(filepath, FileMode.Open, FileAccess.Read);
try
{
    part3 = new byte[chunkSize];            // create buffer
    fileStream.Read(part3, 5, (int)(length - (long)chunkSize));
}
finally
{
    fileStream.Close();
}

but it's not working. 但它不起作用。

Any ideas? 有任何想法吗?

You can use a StreamReader to read in file too large to read into a byte array 您可以使用StreamReader 读入太大而无法读入字节数组的文件

const int max = 1024*1024;

public void ReadALargeFile(string file, int start = 0)
{
    FileStream fileStream = new FileStream(file, FileMode.Open,FileAccess.Read);
    using (fileStream)
    {
        byte[] buffer = new byte[max];
        fileStream.Seek(start, SeekOrigin.Begin);
        int bytesRead = fileStream.Read(buffer, start, max);
        while(bytesRead > 0)
        {
            DoSomething(buffer, bytesRead);
            bytesRead = fileStream.Read(buffer, start, max);
        }
    }
}

If you are working with extremely large files, you should use MemoryMappedFile , which maps a physical file to a memory space: 如果要处理非常大的文件,则应使用MemoryMappedFile ,它将物理文件映射到内存空间:

using (var mmf = MemoryMappedFile.CreateFromFile(@"c:\path\to\big.file"))
{
    using (var accessor = mmf.CreateViewAccessor())
    {
        byte myValue = accessor.ReadByte(someOffset);
        accessor.Write((byte)someValue);
    }
}

See also: MemoryMappedViewAccessor 另请参阅: MemoryMappedViewAccessor

You can also read/write chunks of the file with the different methods in MemoryMappedViewAccessor . 您还可以使用MemoryMappedViewAccessor的不同方法读取/写入文件块。

This was my solution: 这是我的解决方案:

byte[] part1;
byte[] part2;
bool odd = false;
int chunkSize = Convert.ToInt32(length/2);


if (length % 2 == 0)
{
    part1 = new byte[chunkSize];
    part2 = new byte[chunkSize];
}
else
{
    part1 = new byte[chunkSize];
    part2 = new byte[chunkSize + 1];
    odd = true;
}

FileStream fileStream = new FileStream(filepath, FileMode.Open, FileAccess.Read);
using (fileStream)
{
    fileStream.Seek(0, SeekOrigin.Begin);
    int bytesRead = fileStream.Read(part1, 0, chunkSize);
    if (odd)
    {
        bytesRead = fileStream.Read(part2, 0, chunkSize + 1);
    }
    else
    {
        bytesRead = fileStream.Read(part2, 0, chunkSize);
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM