static String readASCII(List<int> buff, int p, l){ String s = ""; for (int i = 0; i < l; i++){ s += String.fromCharCode(buff[p + i]); } return s; }