• このページの内容

Bluetooth データの転送

  • このページの内容

Bluetooth に正常に接続したら、 デバイス、 1 つはコネクテッド BluetoothSocket。今すぐ デバイス間で情報を共有する機能です。BluetoothSocket を使用すると、一般的な 手順は次のとおりです。

  1. InputStream と 転送を処理する OutputStream ソケットを経由し、 getInputStream() および getOutputStream() できます。

  2. を使用したストリームのデータの読み取りと書き込み read(byte[])write(byte[])

もちろん、考慮すべき実装の詳細があります。特に、 ストリームからの読み取りとストリームへの書き込みに専用のスレッドを使用する必要があります。 read(byte[]) メソッドと write(byte[]) メソッドの両方が ブロッキング呼び出しですread(byte[]) メソッドは、なんらかの読み込みが行われるまでブロックを実行します。 ストリームから読み取ることができます通常、write(byte[]) メソッドはブロックしませんが、 リモート デバイスが read(byte[]) を呼び出していない場合にフロー制御をブロックできる その結果、中間バッファがいっぱいになります。ですから、 InputStream からの読み取りに、スレッド内のメインループを専任で行うべきです。 スレッド内で別のパブリック メソッドを使用すると、 OutputStream

2 つのデバイス間でデータを転送する方法の例を次に示します。 Bluetooth で接続:

KotlinJava
private const val TAG = "MY_APP_DEBUG_TAG"

// Defines several constants used when transmitting messages between the
// service and the UI.
const
val MESSAGE_READ: Int = 0
const
val MESSAGE_WRITE: Int = 1
const
val MESSAGE_TOAST: Int = 2
// ... (Add other message types here as needed.)

class MyBluetoothService(
       
// handler that gets info from Bluetooth service
       
private val handler: Handler) {

   
private inner class ConnectedThread(private val mmSocket: BluetoothSocket) : Thread() {

       
private val mmInStream: InputStream = mmSocket.inputStream
       
private val mmOutStream: OutputStream = mmSocket.outputStream
       
private val mmBuffer: ByteArray = ByteArray(1024) // mmBuffer store for the stream

       
override fun run() {
           
var numBytes: Int // bytes returned from read()

           
// Keep listening to the InputStream until an exception occurs.
           
while (true) {
               
// Read from the InputStream.
               numBytes
= try {
                   mmInStream
.read(mmBuffer)
               
} catch (e: IOException) {
                   
Log.d(TAG, "Input stream was disconnected", e)
                   
break
               
}

               
// Send the obtained bytes to the UI activity.
               
val readMsg = handler.obtainMessage(
                       MESSAGE
_READ, numBytes, -1,
                       mmBuffer
)
               readMsg
.sendToTarget()
           
}
       
}

       
// Call this from the main activity to send data to the remote device.
       
fun write(bytes: ByteArray) {
           
try {
               mmOutStream
.write(bytes)
           
} catch (e: IOException) {
               
Log.e(TAG, "Error occurred when sending data", e)

               
// Send a failure message back to the activity.
               
val writeErrorMsg = handler.obtainMessage(MESSAGE_TOAST)
               
val bundle = Bundle().apply {
                   putString
("toast", "Couldn't send data to the other device")
               
}
               writeErrorMsg
.data = bundle
               handler
.sendMessage(writeErrorMsg)
               
return
           
}

           
// Share the sent message with the UI activity.
           
val writtenMsg = handler.obtainMessage(
                   MESSAGE
_WRITE, -1, -1, mmBuffer)
           writtenMsg
.sendToTarget()
       
}

       
// Call this method from the main activity to shut down the connection.
       
fun cancel() {
           
try {
               mmSocket
.close()
           
} catch (e: IOException) {
               
Log.e(TAG, "Could not close the connect socket", e)
           
}
       
}
   
}
}
public class MyBluetoothService {
   
private static final String TAG = "MY_APP_DEBUG_TAG";
   
private Handler handler; // handler that gets info from Bluetooth service

   
// Defines several constants used when transmitting messages between the
   
// service and the UI.
   
private interface MessageConstants {
       
public static final int MESSAGE_READ = 0;
       
public static final int MESSAGE_WRITE = 1;
       
public static final int MESSAGE_TOAST = 2;

       
// ... (Add other message types here as needed.)
   
}

   
private class ConnectedThread extends Thread {
       
private final BluetoothSocket mmSocket;
       
private final InputStream mmInStream;
       
private final OutputStream mmOutStream;
       
private byte[] mmBuffer; // mmBuffer store for the stream

       
public ConnectedThread(BluetoothSocket socket) {
           mmSocket
= socket;
           
InputStream tmpIn = null;
           
OutputStream tmpOut = null;

           
// Get the input and output streams; using temp objects because
           
// member streams are final.
           
try {
               tmpIn
= socket.getInputStream();
           
} catch (IOException e) {
               
Log.e(TAG, "Error occurred when creating input stream", e);
           
}
           
try {
               tmpOut
= socket.getOutputStream();
           
} catch (IOException e) {
               
Log.e(TAG, "Error occurred when creating output stream", e);
           
}

           mmInStream
= tmpIn;
           mmOutStream
= tmpOut;
       
}

       
public void run() {
           mmBuffer
= new byte[1024];
           
int numBytes; // bytes returned from read()

           
// Keep listening to the InputStream until an exception occurs.
           
while (true) {
               
try {
                   
// Read from the InputStream.
                   numBytes
= mmInStream.read(mmBuffer);
                   
// Send the obtained bytes to the UI activity.
                   
Message readMsg = handler.obtainMessage(
                           
MessageConstants.MESSAGE_READ, numBytes, -1,
                           mmBuffer
);
                   readMsg
.sendToTarget();
               
} catch (IOException e) {
                   
Log.d(TAG, "Input stream was disconnected", e);
                   
break;
               
}
           
}
       
}

       
// Call this from the main activity to send data to the remote device.
       
public void write(byte[] bytes) {
           
try {
               mmOutStream
.write(bytes);

               
// Share the sent message with the UI activity.
               
Message writtenMsg = handler.obtainMessage(
                       
MessageConstants.MESSAGE_WRITE, -1, -1, mmBuffer);
               writtenMsg
.sendToTarget();
           
} catch (IOException e) {
               
Log.e(TAG, "Error occurred when sending data", e);

               
// Send a failure message back to the activity.
               
Message writeErrorMsg =
                       handler
.obtainMessage(MessageConstants.MESSAGE_TOAST);
               
Bundle bundle = new Bundle();
               bundle
.putString("toast",
                       
"Couldn't send data to the other device");
               writeErrorMsg
.setData(bundle);
               handler
.sendMessage(writeErrorMsg);
           
}
       
}

       
// Call this method from the main activity to shut down the connection.
       
public void cancel() {
           
try {
               mmSocket
.close();
           
} catch (IOException e) {
               
Log.e(TAG, "Could not close the connect socket", e);
           
}
       
}
   
}
}

コンストラクタが必要なストリームを取得した後、スレッドはデータを InputStream を通す必要があります。read(byte[]) が次のデータを返した場合: ストリームでは、メンバーを使用してデータがメイン アクティビティに送信されます。 親クラスの Handler。スレッド その後、InputStream からさらにバイトが読み取られるまで待機します。

送信データを送信するには、メインスレッドからスレッドの write() メソッドを呼び出します。 送信するバイトを渡します。このメソッドは write(byte[]) を呼び出して、 リモートデバイスにデータを送信します。もし 次の呼び出し時に IOException がスローされる write(byte[]) の場合、スレッドはメイン アクティビティにトーストを送信し、 指定されたバイトをデバイスが他のバイトに送信できなかったことを通知したユーザー 接続します。

スレッドの cancel() メソッドを使用すると、いつでも接続を終了できます。 BluetoothSocket を閉じます。終了時に必ずこのメソッドを呼び出してください 接続します。

Bluetooth API の使用方法については、Bluetooth チャットのサンプルをご覧ください。 アプリ ご覧ください。