自問(wèn)自答謝
/**
* 我這里需要一個(gè) 十進(jìn)制 數(shù)組的 Ascii碼 轉(zhuǎn) 字符串的 函數(shù)
* */
public static String Ascii10ToStr(byte[] asciiS){
StringBuilder str = new StringBuilder();
for(int i = 0; i < asciiS.length ; i++){
//int decimal = Integer.parseInt(asciiS[i], 10);
str.append( (char) asciiS[i]);
}
return str.toString();
}
Android 基于TCP/IP的Socket通信參考 1婆誓、Android網(wǎng)絡(luò)編程 - TCP/IP協(xié)議實(shí)踐2练俐、Android-TCP客戶端的實(shí)現(xiàn)3疼鸟、Android之從TCP/IP于未、HTTP看Socket通信4、Androi...