ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

c#-byte数组转换成16进制字符串和字符数组的方法

2021-02-18 18:03:03  阅读:247  来源: 互联网

标签:byteArray Console 16 c# hexString returnBytes 数组 byte


1.概述

 returnStr += byteArray[i].ToString("X2");

byte[] returnBytes = new byte[hexString.Length / 2];

 returnBytes[i] = Convert.ToByte(hexString.Substring(i * 2, 2), 16);

2.代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp14
{
    class Program
    {
        static void Main(string[] args)
        {
            test1();
            test2();
            Console.ReadKey();
        }
        static void test1() {
            Console.WriteLine("字节数组 转 16进制字符串");
            byte[] byteArray = new byte[2];
            for (int i = 0; i < 2; i++)
            {
                byteArray[i] = 0xF0;
            }
            string str = byteTo16Str(byteArray);
            Console.WriteLine(str);
        }
        static void test2() {
            Console.WriteLine("16进制字符串 转 字节数组");
            string str16 = "f0fa";
            byte[] byteArray2 = StrToHexByte(str16);
            foreach(byte b in byteArray2) {
                Console.WriteLine(b);
            }
        }
        // 字节数组转16进制字符串 
        static string byteTo16Str(byte[] byteArray) {
            String returnStr = "";
            for (int i = 0; i < byteArray.Length; i++)
            {
                returnStr += byteArray[i].ToString("X2");

            }
            return returnStr;
        }
        // 将16进制的字符串转为byte[]
        public static byte[] StrToHexByte(string hexString)
        {
            hexString = hexString.Replace(" ", "");
            if ((hexString.Length % 2) != 0)
                hexString += " ";
            byte[] returnBytes = new byte[hexString.Length / 2];
            for (int i = 0; i < returnBytes.Length; i++)
                returnBytes[i] = Convert.ToByte(hexString.Substring(i * 2, 2), 16);
            return returnBytes;
        }
    }
}

3 运行结果 

标签:byteArray,Console,16,c#,hexString,returnBytes,数组,byte
来源: https://blog.csdn.net/xie__jin__cheng/article/details/113850704

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有