c中如何將byte轉化為字串C中如何將byte轉化為字串

2021-03-08 16:03:36 字數 2591 閱讀 5809

1樓:四舍**入

c#中將byte轉化為字串可以參考以下的**:

//字串轉byte

string stringmessage = "how are you?";

console.writeline("", stringmessage);

system.text.asciiencoding ascii = new system.text.asciiencoding();

byte byte**essage = ascii.getbytes(stringmessage);

//byte轉字串

byte byte**essage;

system.text.asciiencoding ascii = new system.text.asciiencoding();

string stringmessage = ascii.getstring( byte**essage );

擴充套件資料:

字串的轉換

可以用 (string) 標記或者strval()函式將一個值轉換為字串。當某表示式需要字串時,字串的轉換會在表示式範圍內自動完成。例如當使用echo()或者print()函式時,或者將一個變數值與一個字串進行比較的時候。

閱讀手冊中有關型別和型別戲法中的部分有助於更清楚一些。

整數或浮點數數值在轉換成字串時,字串由表示這些數值的數字字元組成(浮點數還包含有指數部分)。

陣列將被轉換成字串 "array",因此無法通過echo()或者print()函式來輸出陣列的內容。

2樓:

實現位元組陣列至十六進位制字串轉換,這個操作在接收網路資料時非常有用,**嘛,就一行,就一行,就一行:

string str = bitconverter.tostring(bytes);

3樓:匿名使用者

有兩張方法

:方法一:

//字串轉byte

string stringmessage = "how are you?";

console.writeline("", stringmessage);

system.text.asciiencoding ascii = new system.text.asciiencoding();

byte byte**essage = ascii.getbytes(stringmessage);

//byte轉字串

byte byte**essage;

system.text.asciiencoding ascii = new system.text.asciiencoding();

string stringmessage = ascii.getstring( byte**essage );

方法二:

//字串轉

utf-8 byte

string stringmessage = "hello world how are you? pi /u03c0 yen /uffe5";

system.text.utf8encoding utf8 = new system.text.utf8encoding();

byte byte**essage = utf8.getbytes(stringmessage);

//utf-8 byte 轉字串

byte byte**essage;

system.text.utf8encoding utf8 = new system.text.utf8encoding();

string stringmessage = utf8.getstring( byte**essage );

4樓:匿名使用者

string s = "abcd";

byte b = system.text.encoding.default.getbytes(s);

string s2 = system.text.encoding.default.getstring(b);

5樓:姚慰

我也是個夜貓子。你的想法是想把資料加密。我的建議是,你自己寫一個演算法【複雜程度自己決定】,比如你接受的字串是"abcd",你逐個讀取字元,然後執行你的演算法加密,比如把a+1=b[ascii碼]得到一個新的字元,當你想解密還原的時候在執行一套解密演算法,把b-1。

一般有加密演算法就有解密演算法的。加密與解密就是個演算法問題。

6樓:匿名使用者

你可以轉為byte後,移位在轉為字串

c# 二進位制如何轉成byte[] 和 字串

7樓:匿名使用者

f5其實就是byte的16進位制表現形式

byte bts=new byte[1]

你除錯的時候你就會看到bts[0] 裡面的值就是245;

int i=(int)bts[0];-> i的值為245string str1=bts[0].tostring(); ->str1有可能是亂碼

string str2=bts[0].tostring("x2");str2->值為f5

就這樣!!

matlab如何將字串轉化為變數名

eval a b 可以原bai汁原味b賦值du給a所儲存變數名zhi,沒有任何精度損失,且dao 適用於任意數回據型別。連續load,每改答變file name for i 1 13 name data1 al num2str i u load name your code load用eval s ...

c中如何將字串轉換成日期格式,C 中如何將字串轉換成日期格式

static string s 20120304120312 private static int f int i,int l private void button1 click object sender,eventargs e string s 20120304120312 datetime ...

c中如何將字串字元拆分出來操作

有些方法很少用,用最常用的或者易懂的就好 string s str.split 取出來是一個字串陣列 string ss null 用全域性變數int num 0 迴圈取出來的字串陣列 for int i 0 i 據我所知,在c 裡string型變數可以向陣列一樣的操作,例如 string temp...