如何加快将大字节数组写入文件?

时间:2013-01-14 12:23:25

标签: c# hex byte filestream

我需要将十六进制字符串转换为字节数组,然后将其写入文件。以下代码提供了 3秒的延迟。 hex 下面是一个长度为1600的十六进制字符串。还有其他方法可以加快速度吗?

        Stopwatch sw = new Stopwatch();
        sw.Start();
        for (int i = 0; i < 5000; i++)
        {

            FileStream objFileStream = new FileStream("E://CRec Correcting Copy//Reader//bin//Debug//Files//Raw Data//a123.txt", FileMode.Append, FileAccess.Write);
            objFileStream.Seek(0, SeekOrigin.End);
            objFileStream.Write(stringTobyte(hex), 0, stringTobyte(hex).Length);
            objFileStream.Close();
        }
        sw.Stop();
        Console.WriteLine(sw.ElapsedMilliseconds);

stringTobyte是将十六进制字符串转换为字节数组的方法。

public static byte[] stringTobyte(string hexString)
    {
        try
        {
            int bytesCount = (hexString.Length) / 2;
            byte[] bytes = new byte[bytesCount];
            for (int x = 0; x < bytesCount; ++x)
            {
                bytes[x] = Convert.ToByte(hexString.Substring(x * 2, 2), 16);
            }
            return bytes;
        }
        catch
        {
            throw;
        }
    }

请告诉我延迟发生在哪里?

2 个答案:

答案 0 :(得分:1)

你认为方式变得复杂。首先,您不需要将自定义函数转换为字节数组。 System.Text.UTF8Encoding.GetBytes(string)会为你做到这一点!此外,这里不需要流,请查看File.WriteAllBytes(string, byte[])方法。

然后它应该是这样的:

System.IO.File.WriteAllBytes("E://CRec Correcting Copy//Reader//bin//Debug//Files//Raw Data//a123.txt", new System.Text.UTF8Encoding().GetBytes(hex));

或多行版本,如果您坚持:

string filePath = "E://CRec Correcting Copy//Reader//bin//Debug//Files//Raw Data//a123.txt";
System.Text.UTF8Encoding encoder = new System.Text.UTF8Encoding();
byte[] bytes = encoder.GetBytes(hex);
System.IO.File.WriteAllBytes(filePath, bytes);

答案 1 :(得分:0)

哇。首先要这样做:

objFileStream.Write(stringTobyte(hex), 0, stringTobyte(hex).Length);


byte[] bytes = stringTobyte(hex);
objFileStream.Write(bytes , 0, bytes.Length);