将字节写入文件


88

我有一个十六进制字符串(例如0CFE9E69271557822FE715A8B3E564BE),我想将其作为字节写入文件。例如,

Offset      0  1  2  3  4  5  6  7   8  9 10 11 12 13 14 15
00000000   0C FE 9E 69 27 15 57 82  2F E7 15 A8 B3 E5 64 BE   .þži'.W‚/ç.¨³åd¾

如何使用.NET和C#完成此操作?



1
@Steven:只是部分。不是最重要的部分。
John Doe

1
可以将Byte []数组的副本复制到C#中的文件中吗?(也可能只是部分重复)。
杰夫B

Answers:


158

如果我对您的理解正确,这应该可以解决问题。using System.IO如果您还没有文件,则需要在文件顶部添加。

public bool ByteArrayToFile(string fileName, byte[] byteArray)
{
    try
    {
        using (var fs = new FileStream(fileName, FileMode.Create, FileAccess.Write))
        {
            fs.Write(byteArray, 0, byteArray.Length);
            return true;
        }
    }
    catch (Exception ex)
    {
        Console.WriteLine("Exception caught in process: {0}", ex);
        return false;
    }
}

74

最简单的方法是将十六进制字符串转换为字节数组并使用该File.WriteAllBytes方法。

使用此问题中StringToByteArray()方法,您将执行以下操作:

string hexString = "0CFE9E69271557822FE715A8B3E564BE";

File.WriteAllBytes("output.dat", StringToByteArray(hexString));

StringToByteArray方法包括以下内容:

public static byte[] StringToByteArray(string hex) {
    return Enumerable.Range(0, hex.Length)
                     .Where(x => x % 2 == 0)
                     .Select(x => Convert.ToByte(hex.Substring(x, 2), 16))
                     .ToArray();
}

谢谢,这很好。如何将字节追加到同一文件?(在第一个“字符串”之后)
John Doe11年

1
@Robertico:将布尔值true添加到WriteAllBytes的第三个参数。您发现MSDN了吗?这是搜索WriteAllBytes追加时的第一个Google链接。

1
我收到一个错误,将布尔值“方法'WriteAllBytes'的无重载带'3'参数”添加进去。MSDN描述:“但是,如果使用循环将数据添加到文件中,则BinaryWriter对象可以提供更好的性能,因为您只需打开和关闭文件一次。” 我正在使用循环。我使用@ 0A0D中的示例,并将“ FileMode.Create”更改为“ FileMode.Append”。
John Doe

3

试试这个:

private byte[] Hex2Bin(string hex) 
{
 if ((hex == null) || (hex.Length < 1)) {
  return new byte[0];
 }
 int num = hex.Length / 2;
 byte[] buffer = new byte[num];
 num *= 2;
 for (int i = 0; i < num; i++) {
  int num3 = int.Parse(hex.Substring(i, 2), NumberStyles.HexNumber);
  buffer[i / 2] = (byte) num3;
  i++;
 }
 return buffer;
}

private string Bin2Hex(byte[] binary) 
{
 StringBuilder builder = new StringBuilder();
 foreach(byte num in binary) {
  if (num > 15) {
   builder.AppendFormat("{0:X}", num);
  } else {
   builder.AppendFormat("0{0:X}", num); /////// 大于 15 就多加个 0
  }
 }
 return builder.ToString();
}

谢谢,这也很好。如何将字节追加到同一文件?(在第一个“字符串”之后)
John Doe11年

2

您将十六进制字符串转换为字节数组。

public static byte[] StringToByteArray(string hex) {
return Enumerable.Range(0, hex.Length)
                 .Where(x => x % 2 == 0)
                 .Select(x => Convert.ToByte(hex.Substring(x, 2), 16))
                 .ToArray();
}

图片来源:Jared Par

然后使用WriteAllBytes写入文件系统。


1
如果您引用现有的Stack Overflow答案作为该问题的答案,那么可以肯定地说这是一个重复的问题,应该标记为此类。
克里斯·

1
在这种情况下,它仅回答了他的部分问题,所以我觉得不需要将其标记为欺骗。有了这些知识,他只会半途而废。
Khepri 2011年

0

本示例将6个字节读入一个字节数组并将其写入另一个字节数组。它对字节进行XOR操作,以便写入文件的结果与原始起始值相同。该文件的大小始终为6个字节,因为它写入的位置为0。

using System;
using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main()
        {
        byte[] b1 = { 1, 2, 4, 8, 16, 32 };
        byte[] b2 = new byte[6];
        byte[] b3 = new byte[6];
        byte[] b4 = new byte[6];

        FileStream f1;
        f1 = new FileStream("test.txt", FileMode.Create, FileAccess.Write);

        // write the byte array into a new file
        f1.Write(b1, 0, 6);
        f1.Close();

        // read the byte array
        f1 = new FileStream("test.txt", FileMode.Open, FileAccess.Read);

        f1.Read(b2, 0, 6);
        f1.Close();

        // make changes to the byte array
        for (int i = 1; i < b2.Length; i++)
        {
            b2[i] = (byte)(b2[i] ^ (byte)10); //xor 10
        }

        f1 = new FileStream("test.txt", FileMode.Open, FileAccess.Write);
        // write the new byte array into the file
        f1.Write(b2, 0, 6);
        f1.Close();

        f1 = new FileStream("test.txt", FileMode.Open, FileAccess.Read);

        // read the byte array
        f1.Read(b3, 0, 6);
        f1.Close();

        // make changes to the byte array
        for (int i = 1; i < b3.Length; i++)
        {
            b4[i] = (byte)(b3[i] ^ (byte)10); //xor 10
        }

        f1 = new FileStream("test.txt", FileMode.Open, FileAccess.Write);

        // b4 will have the same values as b1
        f1.Write(b4, 0, 6);
        f1.Close();
        }
    }
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.