• C# string byte数组转换解析(转)


    2009-08-31 14:46 Mainz 博客园

    C# string byte数组转换实现的过程是什么呢?C# string byte数组间的转换需要注意什么呢?C# string byte数组间转换所涉及的方法是什么呢?让我们来看看具体的内容:

    C# string byte数组转换之string类型转成byte[]:

    byte[] byteArray = System.Text.Encoding.Default.GetBytes ( str );

    反过来,byte[]转成string:

    string str = System.Text.Encoding.Default.GetString ( byteArray );

    其它编码方式的,如System.Text.UTF8Encoding,System.Text.UnicodeEncoding class等;例如:

    string类型转成ASCII byte[]:("01" 转成 byte[] = new byte[]{ 0x30, 0x31})

    1. byte[] byteArray = System.Text.Encoding.ASCII.GetBytes ( str );

    ASCII byte[] 转成string:(byte[] = new byte[]{ 0x30, 0x31} 转成 "01")

    1. string str = System.Text.Encoding.ASCII.GetString ( byteArray );

    有时候还有这样一些需求:

    byte[] 转成原16进制格式的string,例如0xae00cf, 转换成 "ae00cf";new byte[]{ 0x30, 0x31}转成"3031":

    1. public static string ToHexString ( byte[] bytes ) // 0xae00cf => "AE00CF " 
    2. string hexString = string.Empty; 
    3. if ( bytes != null ) 
    4. StringBuilder strB = new StringBuilder (); 
    5.  
    6. for ( int i = 0; i < bytes.Length; i++ ) 
    7. strB.Append ( bytes[i].ToString ( "X2" ) ); 
    8. hexString = strB.ToString (); 
    9. return hexString; 

    C# string byte数组转换之16进制格式的string 转成byte[]

    例如, "ae00cf"转换成0xae00cf,长度缩减一半;"3031" 转成new byte[]{ 0x30, 0x31}:

    1. public static byte[] GetBytes(string hexString, out int discarded) 
    2. discarded = 0; 
    3. string newString = ""; 
    4. char c; 
    5. // remove all none A-F, 0-9, characters 
    6. for (int i=0; i<=""></HEXSTRING.LENGTH;&NBSP;I++)>
    7. c = hexString[i]; 
    8. if (IsHexDigit(c)) 
    9. newString += c; 
    10. else
    11. discarded++; 
    12. // if odd number of characters, discard last character 
    13. if (newString.Length % 2 != 0) 
    14. discarded++; 
    15. newString = newString.Substring(0, newString.Length-1); 
    16.  
    17. int byteLength = newString.Length / 2; 
    18. byte[] bytes = new byte[byteLength]; 
    19. string hex; 
    20. int j = 0; 
    21. for (int i=0; i<=""></BYTES.LENGTH;&NBSP;I++)>
    22. hex = new String(new Char[] {newString[j], newString[j+1]}); 
    23. bytes[i] = HexToByte(hex); 
    24. j = j+2; 
    25. return bytes; 

    C# string byte数组转换的问题就向你介绍到这里,希望对你了解和学习C# string byte数组转换有所帮助。

    /*
    *    电子技术交流群:142282597,讨论单片机、嵌入式软硬件技术
    */

    单片机,嵌入式LINUX技术交流群:142282597
  • 相关阅读:
    前端vscode比较好用的保存自动格式化settings.json配置
    jvm 调优
    ElasticSearch CPU和内存占用高的优化记录
    nginx 安装部署
    Windows 下Redis的部署 及key 过期事件
    Docker 部署应用过程记录
    实现鼠标悬停,div勾画div边框的动画
    html+jquery实现简单图片裁剪
    css+jquery 实现图片局部放大预览
    flex 布局 实现电商网页菜单的多级分类展示
  • 原文地址:https://www.cnblogs.com/qiujiahong/p/3120651.html
Copyright © 2020-2023  润新知