デバイスに接続できないメソッドを使用してペアリングせずに 2 台の電話を接続しようとするcreateInsecureRfcommSocketToServiceRecord
と、IOException がスローされます。 System.err: java.io.IOException: socket closed
私のコードを見ることができます。アプリでは、その特定の項目をクリックすると、新しいスキャン Bluetooth デバイス リストがあり、2 番目のアクティビティに移動し、そのデバイスに接続します。
コード :
この OnItemClick は、検索された新しいデバイス リストのリスナーです。
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
bdDevice = arrayListBluetoothDevices.get(position);
Intent intents = new Intent(Main_Activity.this, SecondActivity.class);
intents.putExtra("deviceAddress", bdDevice.getAddress());
startActivity(intents);
}
SecondActivity.class :
@Override
public void onResume() {
super.onResume();
Intent intent = getIntent();
address = intent.getStringExtra("deviceAddress");
BluetoothDevice device = bluetoothAdapter.getRemoteDevice(address);
try {
//I am creating insecureRFcomm because of no pairing dialog required.
socket = device.createInsecureRfcommSocketToServiceRecord(MY_UUID);
socket.getRemoteDevice().getAddress();
} catch (Exception e) {
e.printStackTrace();
}
bluetoothAdapter.cancelDiscovery();
Log.d(TAG, "...Connecting to Remote...");
try {
//Connection establish between BT-Device and phone.
socket.connect();
counter = 0;
Log.d(TAG, "...Connection established and data link opened...");
} catch (IOException e) {
try {
//Connection close.
socket.close();
if (inStream!=null){
inStream.close();
}
} catch (Exception e2) {
e.printStackTrace();
e2.printStackTrace();
}
finally {
final AlertDialog alertDialog = new AlertDialog.Builder(SBLActivity.this).create();
alertDialog.setMessage("Device is Non SBL.");
alertDialog.setTitle("Device Connection");
alertDialog.setCancelable(false);
alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
alertDialog.dismiss();
finish();
}
});
alertDialog.show();
}
}
}
でエラーが発生しSocket.connect();
、ブロックをキャッチします。 それを修正する方法、またはペアリングダイアログまたはペアリングデバイスなし で、またはペアリングデバイスとペアリングダイアログなしでBluetoothソケットを接続する他の方法
ありがとうございました。