どうやってシステムを?StringオブジェクトとByte Arrayは互いに変換しますか?
1398 ワード
StringをByte Arrayに変換
Byte ArrayをStringに変換
ソース:
How do I convert a string to a byte array and vica-versa in VB.NET and C#?
http://www.chilkatsoft.com/faq/dotnetstrtobytes.html
// C# to convert a string to a byte array.
public static byte[] StrToByteArray(string str)
{
System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
return encoding.GetBytes(str);
}
Byte ArrayをStringに変換
// C# to convert a byte array to a string.
public static byte[] ByteArrayToStr(string str)
{
byte[] dBytes = { 1, 2, 3 };
string string1;
System.Text.ASCIIEncoding enc = new System.Text.ASCIIEncoding();
string1 = enc.GetString(dBytes);
}
ソース:
How do I convert a string to a byte array and vica-versa in VB.NET and C#?
http://www.chilkatsoft.com/faq/dotnetstrtobytes.html