我正在开发一款Android应用,而不是将命令发送到4.0蓝牙串行设备。我想从设备上得到回复。我能够连接到设备并发送命令,但我怎样才能获得此响应?我尝试过使用BluetoothGattServerCallback,但它不起作用。这是我的代码:
String rollno="13f127";
String file="code";
Process p = Runtime.getRuntime().exec("C:\\Users\\Raga\\Documents\\"+rollno+"\\"+file+".py < C:\\Users\\Raga\\Documents\\"+rollno+"\\input.txt");
谢谢!