微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – Strange Notepad HEX-editor插件

目标是将字节数组写入文件.
我有字节数组[]与一些字节,然后:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;

namespace _32_to_16
{
    class Program
    {
        static void Main(string[] args)
        {
            byte[] fits = File.ReadAllBytes("1.myf");
            byte[] img = new byte[fits.Length / 2];
            for (int i = 0; i < fits.Length; i += 4) //Drops 2 high bytes
            {
                img[i/2] = fits[i + 2];
                img[i/2 + 1] = fits[i + 3];
            }
            File.WriteallBytes("new.myf",img);
        }
    }
}

在写入文件之前,img []具有相同的值:

> img [0] = 0x31
> img [1] = 0x27
> img [2] = 0x31
> img [3] = 0xe2
>依此类推……

写入文件后,在HEX编辑器中我看到了

> 00000000:31 27 31 3f和其他错误值.

有时,使用其他fits []值,img []数组正确写入文件.我做错了什么?
测试文件1.myf(这会产生错误的结果)https://www.dropbox.com/s/6xyf761oqm8j7y1/1.myf?dl=0
测试文件2.myf(正确写入文件)https://www.dropbox.com/s/zrglpx7kmpydurz/2.myf?dl=0

我简化了代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;

namespace _32_to_16
{
    class Program
    {
        static void Main(string[] args)
        {
            byte[] img_correct = new byte[8] { 0xbd,0x19,0xbd,0x72,0x93,0xf7 };
            File.WriteallBytes("img_correct.myf",img_correct);

            byte[] img_strange = new byte[8] { 0x33,0x08,0x33,0xac,0xe3,0x94 };
            File.WriteallBytes("img_strange.myf",img_strange);
        }
    }
}

在HEX-editor img_correct.myf看起来像这样:
bd 19 bd 72 bd 93 bd f7

在HEX-editor中,img_strange.myf看起来像这样:
33 08 33 3f 3f 3f

解决方法

您正在使用记事本中的HEX-Editor插件,该插件似乎有一个 problem reading binary files.

尝试使用其他十六进制编辑器,它应显示正确的值.

这是HxD和HEX-Editor的屏幕截图,显示相同的文件

原文地址:https://www.jb51.cc/csharp/243463.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐