码迷,mamicode.com
首页 > 其他好文 > 详细

byte[] bytes和string转换

时间:2014-05-01 19:08:41      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:blog   code   tar   ext   int   string   art   http   com   for   new   

public static string ToHexString ( byte[] bytes ) // 0xae00cf => "AE00CF "
mamicode.com,码迷
        {
mamicode.com,码迷            
string hexString = string.Empty;
mamicode.com,码迷            
if ( bytes != null )
mamicode.com,码迷            
{
mamicode.com,码迷                StringBuilder strB 
= new StringBuilder ();
mamicode.com,码迷
mamicode.com,码迷                
for ( int i = 0; i < bytes.Length; i++ )
mamicode.com,码迷                
{
mamicode.com,码迷                    strB.Append ( bytes[i].ToString ( 
"X2" ) );
mamicode.com,码迷                }

mamicode.com,码迷                hexString 
= strB.ToString ();
mamicode.com,码迷            }

mamicode.com,码迷            
return hexString;
mamicode.com,码迷        }

byte[] bytes和string转换,码迷,mamicode.com

byte[] bytes和string转换

标签:blog   code   tar   ext   int   string   art   http   com   for   new   

原文地址:http://www.cnblogs.com/gisoracle/p/3702856.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!