ช่วยอธิบาย Code eclipse(java) หน่อยครับ

ตามนี้ครับ
[open_code]public static byte[] hexToByte(String s) throws Exception {
        if ("0x".equals(s.substring(0, 2))) {
            s = s.substring(2);
        }
        Log.d("MonitorActivity",s);
        byte[] baKeyword = new byte[s.length() / 2];
        for (int i = 0; i < baKeyword.length; i++) {
            try {
                baKeyword = (byte) (0xff & Integer.parseInt(s.substring(
                        i * 2, i * 2 + 2), 16));
                Log.d("MonitorActivity",baKeyword+",");
            } catch (Exception e) {
                e.printStackTrace();
                throw e;
            }
        }
        return baKeyword;
    }[/close_code]
แล้วถ้าผมจะส่ง Hex สัก 15 ค่า ทีเดียวจะต้องแปลงอย่างไรหรือ เขียนอย่างไรครับ
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่