现在我只能将数据从服务器发送到客户端。我把它放在服务器上的OutputStream中,并从客户端的InputStream接收。
在另一个方向上做任何事吗?我还没有在android.com或任何其他资源上发现任何相关信息。
答案 0 :(得分:0)
public void connectBTSerial(BluetoothDevice bdev){
BluetoothSocket bSocket = bdev.createInsecureRfcommSocketToServiceRecord(UUID.fromString(SOME_UUID));
bSocket.connect();
InputStream in = bSocket.getInputStream();
OutputStream out = bSocket.getOutputStream();
}