UUID u = UUID.fromString(MY_UUID);
BluetoothSocket btsoc = device.createRfcommSocketToServiceRecord(u);
btsoc.connect();
This will create the bluetooth connection with PC. Can I create another socket connection with different UUID? In normal socket, we could distinguish it with port number on one IP address.