C#下文件转换到二进制流再到十六进制的转换流程

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

namespace FileStore
{
    class Program
    {
        static void Main(string[] args)
        {
            /*前几天处理了一个C++的程序函数调用设备之后返回数据,比如说正常情况下返回来的数据应该1A2A3A4A
             * 数据类型开始定义的是unsigned char 我加断点调试的时候返回值是烫,后来请教了C++水平高的人家告诉我
             * 是变量没有初始化的问题,然后我就初始化了变量,给每一个变量都定义了字符长度,就不会显示烫了
             * 但是依然显示的是乱码 很纳闷今天我就用C#来调用尝试一下看二进制流那种格式怎么转换成16进制
             */
            byte[] byteICO = ConvertToBinary("f://1.ico");
            string Str_hex = BitConverter.ToString(byteICO).Replace("-", string.Empty);
            Console.WriteLine(Str_hex);
            Console.ReadLine();
        }

        /// 
        /// 将文件转换成二进制
        /// 
        /// 文件路径
        /// 
        public static byte[] ConvertToBinary(string Path)
        {
            FileStream stream = new FileInfo(Path).OpenRead();
            byte[] buffer = new byte[stream.Length];
            stream.Read(buffer, 0, Convert.ToInt32(stream.Length));
            return buffer;
        }

    }
}

你可能感兴趣的:(杂七杂八)