27 Aralık 2016 Salı

BluetoothSocket Sınıfı

Giriş
Şu satırı dahil ederiz.
import android.bluetooth.BluetoothSocket;
constructor
Şöyle yaparız.
BluetoothDevice device = ...;
BluetoothSocket sock = device.createRfcommSocketToServiceRecord(MY_UUID);
close metodu
Şöyle yaparız.
socket.close();
connect metodu
Şöyle yaparız.
socket.connect();
getInputStream metodu
Nesne okuyacağımız zaman InputStream, ObjectInputStream ile sarmalanır. Şöyle yaparız.
InputStream in = new ObjectInputStream(socket.getInputStream());
getOutputStream metodu
Şöyle yaparız.
OutputStream outStream = 
try {
  outStream = btSocket.getOutputStream();
} catch (IOException e) {
  ...
}
Nesne göndereceğimiz zaman OutputStream, ObjectOutputStream ile sarmalanır. Şöyle yaparız.
OutputStream out = new ObjectOutputStream(socket.getOutputStream());


Hiç yorum yok:

Yorum Gönder