파일에 바이트 쓰기


88

16 진수 문자열 (예 :) 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
의 가능한 중복 캔은 [] 배열은 C #에서 파일에 바이트 기록? (또한 부분 복제 일 수도 있습니다).
Jeff B

답변:


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;
    }
}

75

가장 간단한 방법은 16 진수 문자열을 바이트 배열로 변환하고 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();
}

Thx, 이것은 잘 작동합니다. 같은 파일에 바이트를 어떻게 추가 할 수 있습니까? (첫 번째 '문자열'후)
홍길동

1
@Robertico : WriteAllBytes의 세 번째 매개 변수에 true의 부울 값을 추가합니다. MSDN을 아직 발견하셨습니까? 이것은 WriteAllBytes 추가를 검색 할 때 첫 번째 Google 링크입니다.

1
부울 값 'No overload for method'WriteAllBytes 'takes'3 'arguments'를 추가하는 동안 오류가 발생했습니다. 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();
}

Thx, 이것도 잘 작동합니다. 같은 파일에 바이트를 어떻게 추가 할 수 있습니까? (첫 번째 '문자열'후)
홍길동

2

16 진 문자열을 바이트 배열로 변환합니다.

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 답변을 참조하는 경우이 질문이 중복 된 질문이므로 플래그를 지정해야한다는 것이 매우 안전합니다.
ChrisF

1
이 경우에는 그의 질문의 일부에 대해서만 답변했기 때문에 속임수로 표시 할 필요가 없다고 느꼈습니다. 그는 그 지식을 가지고 절반 밖에 도달하지 못했습니다.
Khepri 2011-06-18

0

이 예제는 6 바이트를 바이트 배열로 읽고 다른 바이트 배열에 씁니다. 파일에 기록 된 결과가 원래 시작 값과 같도록 바이트로 XOR 연산을 수행합니다. 파일은 위치 0에 쓰기 때문에 항상 6 바이트 크기입니다.

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();
        }
    }
}
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.