string与byte[]相互转换方法

3630阅读 0评论2016-06-29 dyli2000
分类:C#/.net


  1.         public static string ByteArray2String(byte[] contentByte)
  2.         {
  3.             string result = string.Empty;
  4.             if(contentByte != null)
  5.                 result = Encoding.GetEncoding("UTF-8").GetString(contentByte, 0, contentByte.Length);

  6.             return result;
  7.         }


  8.         public static byte[] String2ByteArray(string documentText)//(Editor myEditor)
  9.         {
  10.             byte[] contentBytes = null;

  11.             /*!!! myEditor.Html中的IMAGE是路径,BodyHtml中的是转换后byte[],但bodyhtml只包含body内的html,
  12.              取整个文件的html需要使用DocumentText */
  13.             if (string.IsNullOrWhiteSpace(documentText))
  14.                 contentBytes = null;
  15.             else
  16.                 contentBytes = Encoding.GetEncoding("UTF-8").GetBytes(documentText);

  17.             return contentBytes;
  18.         }

上一篇:让窗体所有控件无效但close有效
下一篇:Winform html 处理图片的问题