我想通過藍牙發送一個十六進制字符串中的Android/SPP 我想這:如何通過藍牙發送的十六進制值在Android的
OUT = sock.getOutputStream();
String myHexString = Integer.toHexString(80) + " "
+ Integer.toHexString(2) + " " + Integer.toHexString(0)
+ " " + Integer.toHexString(48);
發送此字符串:
out.write(myHexString.getBytes());
,但沒有奏效...
任何幫助嗎?
你將不得不放棄比這更多的上下文。什麼是襪子?它是藍牙連接嗎?髒襪子?你如何連接到藍牙設備?你連接到藍牙設備?請提供更多代碼。此外,「它沒有工作」沒有提供足夠的關於這個問題的信息。也可以發佈錯誤,或者更好地描述它是如何工作的。 – Jack