当前位置: 首页>>代码示例>>Java>>正文


Java BluetoothSocket类代码示例

本文整理汇总了Java中android.bluetooth.BluetoothSocket的典型用法代码示例。如果您正苦于以下问题:Java BluetoothSocket类的具体用法?Java BluetoothSocket怎么用?Java BluetoothSocket使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


BluetoothSocket类属于android.bluetooth包,在下文中一共展示了BluetoothSocket类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: ConnectedThread

import android.bluetooth.BluetoothSocket; //导入依赖的package包/类
public ConnectedThread(BluetoothSocket socket, String socketType) {
    Log.d(TAG, "create ConnectedThread: " + socketType);
    mmSocket = socket;
    InputStream tmpIn = null;
    OutputStream tmpOut = null;

    // Get the BluetoothSocket input and output streams
    try {
        tmpIn = socket.getInputStream();
        tmpOut = socket.getOutputStream();
    } catch (IOException e) {
        Log.e(TAG, "temp sockets not created", e);
    }

    mmInStream = tmpIn;
    mmOutStream = tmpOut;
    mState = STATE_CONNECTED;
}
 
开发者ID:hardik-dadhich,项目名称:bluetooth-chat-appliction,代码行数:19,代码来源:BluetoothChatService.java

示例2: connectDevice

import android.bluetooth.BluetoothSocket; //导入依赖的package包/类
/**
     * 连接蓝牙(2)
     *
     * @return
     */
    public static BluetoothSocket connectDevice(final Handler handler) {
        BluetoothSocket socket = null;
        try {
            Comment.SPP_UUID = UUID.fromString("00001106-0000-1000-8000-00805F9B34FB");
            socket = Comment.bluetoothDevice.createRfcommSocketToServiceRecord(Comment.SPP_UUID);
            socket.connect();
            handler.sendEmptyMessage(Comment.CONNECT);
        } catch (Exception e) {
            handler.sendEmptyMessage(2);
            try {
                if (socket!=null)
                socket.close();
            } catch (Exception closeException) {

            }
        }
        return socket;
}
 
开发者ID:aiyangtianci,项目名称:BluetoothAPP,代码行数:24,代码来源:BluetoothUtil.java

示例3: ConnectThread

import android.bluetooth.BluetoothSocket; //导入依赖的package包/类
public ConnectThread(BluetoothDevice device, boolean secure)
{
    mmDevice = device;
    BluetoothSocket tmp = null;
    mSocketType = secure ? "Secure" : "Insecure";

    // Get a BluetoothSocket for a connection with the given BluetoothDevice
    try
    {
        if (secure)
        {
            tmp = device.createRfcommSocketToServiceRecord(MY_UUID_SECURE);
        }
        else
        {
            tmp = device.createInsecureRfcommSocketToServiceRecord(MY_UUID_INSECURE);
        }
    }
    catch (IOException e)
    {
        MyLog.e(TAG, "Socket Type: " + mSocketType + " create() failed", e);
    }

    mmSocket = tmp;
}
 
开发者ID:Mozta,项目名称:ELM327,代码行数:26,代码来源:BluetoothIOGateway.java

示例4: ConnectThread

import android.bluetooth.BluetoothSocket; //导入依赖的package包/类
public ConnectThread(BluetoothDevice device, boolean secure) {
    mmDevice = device;
    BluetoothSocket tmp = null;
    mSocketType = secure ? "Secure" : "Insecure";

    // Get a BluetoothSocket for a connection with the
    // given BluetoothDevice
    try {
        if (secure) {
            tmp = device.createRfcommSocketToServiceRecord(
                    MY_UUID_SECURE);
        } else {
            tmp = device.createInsecureRfcommSocketToServiceRecord(
                    MY_UUID_INSECURE);
        }
    } catch (IOException e) {
        Log.e(TAG, "Socket Type: " + mSocketType + "create() failed", e);
    }
    mmSocket = tmp;
    mState = STATE_CONNECTING;
}
 
开发者ID:AviralGarg1993,项目名称:VR-One,代码行数:22,代码来源:BluetoothListener.java

示例5: bind

import android.bluetooth.BluetoothSocket; //导入依赖的package包/类
/**
 * Bind boolean.
 *
 * @param socket the socket
 * @return the boolean
 */
public boolean bind( BluetoothSocket socket )
{

	mmSocket = socket;
	macAddress = mmSocket.getRemoteDevice().getAddress();

	// Get the BluetoothSocket input and output streams
	try
	{
		mmInStream = socket.getInputStream();
		mmOutStream = socket.getOutputStream();

		this.isRunning = true;
		// 펜 연결 후 맨 처음 펜정보를 요청한다.(프로토콜 2.0)
		startConnect();
		return true;
	}
	catch ( IOException e )
	{
		NLog.e( "[BTAdt/ConnectedThread] temporary sockets is not created", e );
	}

	return false;
}
 
开发者ID:NeoSmartpen,项目名称:AndroidSDK2.0,代码行数:31,代码来源:BTAdt.java

示例6: ConnectThread

import android.bluetooth.BluetoothSocket; //导入依赖的package包/类
/**
 * Creates the connection thread that will connect to a given device.
 *
 * @param device The device to connect to
 */
ConnectThread(BluetoothDevice device) {
    mmDevice = device;
    BluetoothSocket tmp = null;

    // Get a BluetoothSocket for a connection with the given BluetoothDevice
    try {
        tmp = device.createRfcommSocketToServiceRecord(SERVICE_UUID);
    } catch (IOException e) {
        Log.e(TAG, "create socket failed", e);
    }
    mmSocket = tmp;
    mState = ServiceState.CONNECTING;

    // Notifiy the user that we are now connecting
    android.os.Message userNotification
            = mHandler.obtainMessage(ServiceState.CONNECTING.ordinal());
    mHandler.sendMessage(userNotification);
}
 
开发者ID:FelixWohlfrom,项目名称:Presenter-Client-Android,代码行数:24,代码来源:BluetoothPresenterControl.java

示例7: ConnectThread

import android.bluetooth.BluetoothSocket; //导入依赖的package包/类
public ConnectThread(BluetoothDevice device, boolean secure) {
    mmDevice = device;
    BluetoothSocket tmp = null;
    mSocketType = secure ? "Secure" : "Insecure";

    // Get a BluetoothSocket for a connection with the
    // given BluetoothDevice
    try {
        if (secure) {
            tmp = device.createRfcommSocketToServiceRecord(
                    MY_UUID_SECURE);
        } else {
            tmp = device.createInsecureRfcommSocketToServiceRecord(
                    MY_UUID_INSECURE);
        }
    } catch (IOException e) {
        Log.e(TAG, "Socket Type: " + mSocketType + "create() failed", e);
    }
    mmSocket = tmp;
}
 
开发者ID:tkmarsh,项目名称:SmartRC,代码行数:21,代码来源:BluetoothChatService.java

示例8: connected

import android.bluetooth.BluetoothSocket; //导入依赖的package包/类
/**
 * Start the ConnectedThread to begin managing a Bluetooth connection
 *
 * @param socket The BluetoothSocket on which the connection was made
 * @param device The BluetoothDevice that has been connected
 */
private synchronized void connected(BluetoothSocket socket, BluetoothDevice device) {
    // Cancel the thread that completed the connection
    if (mConnectThread != null) {
        mConnectThread.cancel();
        mConnectThread = null;
    }

    // Cancel any thread currently running a connection
    if (mConnectedThread != null) {
        mConnectedThread.cancel();
        mConnectedThread = null;
    }

    // Start the thread to manage the connection and perform transmissions
    mConnectedThread = new ConnectedThread(socket, this, device);
    mConnectedThread.start();
}
 
开发者ID:FelixWohlfrom,项目名称:Presenter-Client-Android,代码行数:24,代码来源:BluetoothPresenterControl.java

示例9: createKeyAgreementConnection

import android.bluetooth.BluetoothSocket; //导入依赖的package包/类
@Override
public DuplexTransportConnection createKeyAgreementConnection(
		byte[] commitment, BdfList descriptor, long timeout) {
	if (!isRunning()) return null;
	String address;
	try {
		address = parseAddress(descriptor);
	} catch (FormatException e) {
		LOG.info("Invalid address in key agreement descriptor");
		return null;
	}
	// No truncation necessary because COMMIT_LENGTH = 16
	UUID uuid = UUID.nameUUIDFromBytes(commitment);
	if (LOG.isLoggable(INFO))
		LOG.info("Connecting to key agreement UUID " + uuid);
	BluetoothSocket s = connect(address, uuid.toString());
	if (s == null) return null;
	return new DroidtoothTransportConnection(this, s);
}
 
开发者ID:rafjordao,项目名称:Nird2,代码行数:20,代码来源:DroidtoothPlugin.java

示例10: acceptContactConnections

import android.bluetooth.BluetoothSocket; //导入依赖的package包/类
private void acceptContactConnections() {
	while (isRunning()) {
		BluetoothSocket s;
		try {
			s = socket.accept();
		} catch (IOException e) {
			// This is expected when the socket is closed
			if (LOG.isLoggable(INFO)) LOG.info(e.toString());
			return;
		}
		if (LOG.isLoggable(INFO)) {
			String address = s.getRemoteDevice().getAddress();
			LOG.info("Connection from " + scrubMacAddress(address));
		}
		backoff.reset();
		callback.incomingConnectionCreated(wrapSocket(s));
	}
}
 
开发者ID:rafjordao,项目名称:Nird2,代码行数:19,代码来源:DroidtoothPlugin.java

示例11: call

import android.bluetooth.BluetoothSocket; //导入依赖的package包/类
@Override
public BluetoothSocket call() throws Exception {
	// Repeat discovery until we connect or get interrupted
	while (true) {
		// Discover nearby devices
		LOG.info("Discovering nearby devices");
		List<String> addresses = discoverDevices();
		if (addresses.isEmpty()) {
			LOG.info("No devices discovered");
			continue;
		}
		// Connect to any device with the right UUID
		for (String address : addresses) {
			BluetoothSocket s = connect(address, uuid);
			if (s != null) {
				LOG.info("Outgoing connection");
				return s;
			}
		}
	}
}
 
开发者ID:rafjordao,项目名称:Nird2,代码行数:22,代码来源:DroidtoothPlugin.java

示例12: ConnectThread

import android.bluetooth.BluetoothSocket; //导入依赖的package包/类
public ConnectThread(BluetoothDevice device) {
    // Use a temporary object that is later assigned to mmSocket,
    // because mmSocket is final
    BluetoothSocket tmp = null;
    mmDevice = device;

    /*try {
        tmp = createBluetoothSocket(device);
    } catch (IOException e1) {
        e1.printStackTrace();
    }*/

    try {
        tmp = device.createInsecureRfcommSocketToServiceRecord(MY_UUID);
    } catch (IOException e) { e.printStackTrace(); }

    /*try {
        tmp = createBluetoothSocket(device);
    } catch (IOException e) {
        e.printStackTrace();
    }*/

    mmSocket = tmp;
}
 
开发者ID:ordsen,项目名称:Snach-Android,代码行数:25,代码来源:BluetoothActivity.java

示例13: connectToClient

import android.bluetooth.BluetoothSocket; //导入依赖的package包/类
private void connectToClient(final BluetoothSocket btSocketClient) throws IOException {
    MLog.d(TAG, "bbt connection to device: " + btSocketClient.getRemoteDevice().getName());

    final ConnectedDevice connectedDevice = new ConnectedDevice(btSocketClient);
    mServerConnections.add(connectedDevice);

    // callback
    if (mCallbackOnNewConnection != null) {
        mHandler.post(new Runnable() {
            @Override
            public void run() {
                ReturnObject ret = new ReturnObject();
                ret.put("device", connectedDevice);
                ret.put("name", btSocketClient.getRemoteDevice().getName());
                ret.put("mac", btSocketClient.getRemoteDevice().getAddress());
                mCallbackOnNewConnection.event(ret);
            }
        });

    }

    connectedDevice.startThread();
}
 
开发者ID:victordiaz,项目名称:phonk,代码行数:24,代码来源:PBluetoothServer.java

示例14: ConnectThread

import android.bluetooth.BluetoothSocket; //导入依赖的package包/类
public ConnectThread(BluetoothDevice device, boolean secure) {
    mmDevice = device;
    BluetoothSocket tmp = null;
    mSocketType = secure ? "Secure" : "Insecure";

    try {
        if (secure) {
            tmp = device.createRfcommSocketToServiceRecord(MY_UUID_SECURE);
        } else {
            tmp = device.createInsecureRfcommSocketToServiceRecord(MY_UUID_INSECURE);
        }
    } catch (IOException | NullPointerException e) {
        Log.e(TAG, "Socket Type: " + mSocketType + "create() failed", e);
    }
    mmSocket = tmp;
    mState = STATE_CONNECTING;
}
 
开发者ID:zeevy,项目名称:grblcontroller,代码行数:18,代码来源:SerialThreadService.java

示例15: ConnectedThread

import android.bluetooth.BluetoothSocket; //导入依赖的package包/类
public ConnectedThread(BluetoothSocket socket, String socketType) {
    Log.d(TAG, "create ConnectedThread: " + socketType);
    mmSocket = socket;
    InputStream tmpIn = null;
    OutputStream tmpOut = null;

    // Get the BluetoothSocket input and output streams
    try {
        tmpIn = socket.getInputStream();
        tmpOut = socket.getOutputStream();
    } catch (IOException | NullPointerException e) {
        Log.e(TAG, "temp sockets not created", e);
    }

    mmInStream = tmpIn;
    mmOutStream = tmpOut;
    mState = STATE_CONNECTED;
}
 
开发者ID:zeevy,项目名称:grblcontroller,代码行数:19,代码来源:SerialThreadService.java


注:本文中的android.bluetooth.BluetoothSocket类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。