Android BLE与终端通信(三)——client与服务端通信过程以及实现数据通信


前面的终究仅仅是小知识点。上不了台面,也仅仅能算是起到一个科普的作用。而同步到实际的开发上去,今天就来延续前两篇实现蓝牙主从关系的client和服务端了。本文相关链接须要去google的API上查看,须要翻墙的

Bluetooth Low Energy:http://developer.android.com/guide/topics/connectivity/bluetooth-le.html

可是我们依旧没有讲到BLE(低功耗蓝牙)。放心,下一篇就回讲到。跟前面的基本上非常大的不同,我们今天来看下client和服务端的实现

我们以上篇为栗子:

Android BLE与终端通信(二)——Android Bluetooth基础搜索蓝牙设备显示列表

一.蓝牙传输数据

蓝牙传输数据事实上跟我们的 Socket(套接字)有点相似。假设有不懂的。能够百度一下概念,我们仅仅要知道是这么回事就能够了,在网络中使用Socket和ServerSocket控制client和服务端来数据读写。而蓝牙通讯也是由client和服务端来完毕的,蓝牙clientSocket是BluetoothSocket,蓝牙服务端Socket是BluetoothServerSocket,这两个类都在android.bluetooth包下。并且不管是BluetoothSocket还是BluetoothServerSocket,我们都须要一个UUID(标识符),这个UUID在上篇也是有提到,并且他的格式也是固定的:

UUID:XXXXXXXX(8)-XXXX(4)-XXXX(4)-XXXX(4)-XXXXXXXXXXXX(12)

第一段是8位,中间三段式4位,最后一段是12位。UUID相当于Socket的端口。而蓝牙地址则相当于Socket的IP

1.activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" > <Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="btnSearch"
android:text="搜索蓝牙设备" /> <ListView
android:id="@+id/lvDevices"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" /> </LinearLayout>

2.实现步骤

1.声明

我们须要的东西
  // 本地蓝牙适配器
private BluetoothAdapter mBluetoothAdapter;
// 列表
private ListView lvDevices;
// 存储搜索到的蓝牙
private List<String> bluetoothDevices = new ArrayList<String>();
// listview的adapter
private ArrayAdapter<String> arrayAdapter;
// UUID.randomUUID()随机获取UUID
private final UUID MY_UUID = UUID
.fromString("db764ac8-4b08-7f25-aafe-59d03c27bae3");
// 连接对象的名称
private final String NAME = "LGL";
// 这里本身即是服务端也是client,须要例如以下类
private BluetoothSocket clientSocket;
private BluetoothDevice device;
// 输出流_client须要往服务端输出
private OutputStream os;

2.初始化

// 获取本地蓝牙适配器
mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter(); // 推断手机是否支持蓝牙
if (mBluetoothAdapter == null) {
Toast.makeText(this, "设备不支持蓝牙", Toast.LENGTH_SHORT).show();
finish();
} // 推断是否打开蓝牙
if (!mBluetoothAdapter.isEnabled()) {
// 弹出对话框提示用户是后打开
Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(intent, 1);
// 不做提示,强行打开
// mBluetoothAdapter.enable();
}
// 初始化listview
lvDevices = (ListView) findViewById(R.id.lvDevices);
lvDevices.setOnItemClickListener(this); // 获取已经配对的设备
Set<BluetoothDevice> pairedDevices = mBluetoothAdapter
.getBondedDevices(); // 推断是否有配对过的设备
if (pairedDevices.size() > 0) {
for (BluetoothDevice device : pairedDevices) {
// 遍历到列表中
bluetoothDevices.add(device.getName() + ":"
+ device.getAddress() + "\n");
}
} // adapter
arrayAdapter = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, android.R.id.text1,
bluetoothDevices);
lvDevices.setAdapter(arrayAdapter); /**
* 异步搜索蓝牙设备——广播接收
*/
// 找到设备的广播
IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
// 注冊广播
registerReceiver(receiver, filter);
// 搜索完毕的广播
filter = new IntentFilter(BluetoothAdapter.ACTION_DISCOVERY_FINISHED);
// 注冊广播
registerReceiver(receiver, filter);
}

3.点击搜索

public void btnSearch(View v) {
// 设置进度条
setProgressBarIndeterminateVisibility(true);
setTitle("正在搜索...");
// 推断是否在搜索,假设在搜索,就取消搜索
if (mBluetoothAdapter.isDiscovering()) {
mBluetoothAdapter.cancelDiscovery();
}
// 開始搜索
mBluetoothAdapter.startDiscovery();
}

4.搜索设备

private final BroadcastReceiver receiver = new BroadcastReceiver() {

        @Override
public void onReceive(Context context, Intent intent) {
// 收到的广播类型
String action = intent.getAction();
// 发现设备的广播
if (BluetoothDevice.ACTION_FOUND.equals(action)) {
// 从intent中获取设备
BluetoothDevice device = intent
.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
// 推断是否配对过
if (device.getBondState() != BluetoothDevice.BOND_BONDED) {
// 加入到列表
bluetoothDevices.add(device.getName() + ":"
+ device.getAddress() + "\n");
arrayAdapter.notifyDataSetChanged(); }
// 搜索完毕
} else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED
.equals(action)) {
// 关闭进度条
setProgressBarIndeterminateVisibility(true);
setTitle("搜索完毕!");
}
}
};

5.client实现已经发送数据流


// client
@Override
public void onItemClick(AdapterView<? > parent, View view, int position,
long id) {
// 先获得蓝牙的地址和设备名
String s = arrayAdapter.getItem(position);
// 单独解析地址
String address = s.substring(s.indexOf(":") + 1).trim(); // 主动连接蓝牙
try {
// 推断是否在搜索,假设在搜索,就取消搜索
if (mBluetoothAdapter.isDiscovering()) {
mBluetoothAdapter.cancelDiscovery();
}
try {
// 推断能否够获得
if (device == null) {
// 获得远程设备
device = mBluetoothAdapter.getRemoteDevice(address);
}
// 開始连接
if (clientSocket == null) {
clientSocket = device
.createRfcommSocketToServiceRecord(MY_UUID);
// 连接
clientSocket.connect();
// 获得输出流
os = clientSocket.getOutputStream(); }
} catch (Exception e) {
// TODO: handle exception
}
// 假设成功获得输出流
if (os != null) {
os.write("Hello Bluetooth!".getBytes("utf-8"));
} } catch (Exception e) {
// TODO: handle exception
}
}

6.Handler服务

// 服务端,须要监听client的线程类
private Handler handler = new Handler() {
public void handleMessage(android.os.Message msg) {
Toast.makeText(MainActivity.this, String.valueOf(msg.obj),
Toast.LENGTH_SHORT).show();
super.handleMessage(msg);
}
};

7.服务端读取数据流

// 线程服务类
private class AcceptThread extends Thread {
private BluetoothServerSocket serverSocket;
private BluetoothSocket socket;
// 输入 输出流
private OutputStream os;
private InputStream is; public AcceptThread() {
try {
serverSocket = mBluetoothAdapter
.listenUsingRfcommWithServiceRecord(NAME, MY_UUID);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
} @Override
public void run() {
// 截获client的蓝牙消息
try {
socket = serverSocket.accept(); // 假设堵塞了。就会一直停留在这里
is = socket.getInputStream();
os = socket.getOutputStream();
// 不断接收请求,假设client没有发送的话还是会堵塞
while (true) {
// 每次仅仅发送128个字节
byte[] buffer = new byte[128];
// 读取
int count = is.read();
// 假设读取到了,我们就发送刚才的那个Toast
Message msg = new Message();
msg.obj = new String(buffer, 0, count, "utf-8");
handler.sendMessage(msg);
}
} catch (Exception e) {
// TODO: handle exception
}
}
}

8.开启服务

首先要声明
        //启动服务
ac = new AcceptThread();
ac.start();

MainActivity完整代码

package com.lgl.bluetoothget;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import java.util.UUID; import android.app.Activity;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.BluetoothServerSocket;
import android.bluetooth.BluetoothSocket;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast; public class MainActivity extends Activity implements OnItemClickListener { // 本地蓝牙适配器
private BluetoothAdapter mBluetoothAdapter;
// 列表
private ListView lvDevices;
// 存储搜索到的蓝牙
private List<String> bluetoothDevices = new ArrayList<String>();
// listview的adapter
private ArrayAdapter<String> arrayAdapter;
// UUID.randomUUID()随机获取UUID
private final UUID MY_UUID = UUID
.fromString("db764ac8-4b08-7f25-aafe-59d03c27bae3");
// 连接对象的名称
private final String NAME = "LGL"; // 这里本身即是服务端也是client,须要例如以下类
private BluetoothSocket clientSocket;
private BluetoothDevice device;
// 输出流_client须要往服务端输出
private OutputStream os;
//线程类的实例
private AcceptThread ac; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); initView();
} private void initView() { // 获取本地蓝牙适配器
mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter(); // 推断手机是否支持蓝牙
if (mBluetoothAdapter == null) {
Toast.makeText(this, "设备不支持蓝牙", Toast.LENGTH_SHORT).show();
finish();
} // 推断是否打开蓝牙
if (!mBluetoothAdapter.isEnabled()) {
// 弹出对话框提示用户是后打开
Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(intent, 1);
// 不做提示。强行打开
// mBluetoothAdapter.enable();
}
// 初始化listview
lvDevices = (ListView) findViewById(R.id.lvDevices);
lvDevices.setOnItemClickListener(this); // 获取已经配对的设备
Set<BluetoothDevice> pairedDevices = mBluetoothAdapter
.getBondedDevices(); // 推断是否有配对过的设备
if (pairedDevices.size() > 0) {
for (BluetoothDevice device : pairedDevices) {
// 遍历到列表中
bluetoothDevices.add(device.getName() + ":"
+ device.getAddress() + "\n");
}
} // adapter
arrayAdapter = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, android.R.id.text1,
bluetoothDevices);
lvDevices.setAdapter(arrayAdapter); //启动服务
ac = new AcceptThread();
ac.start(); /**
* 异步搜索蓝牙设备——广播接收
*/
// 找到设备的广播
IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
// 注冊广播
registerReceiver(receiver, filter);
// 搜索完毕的广播
filter = new IntentFilter(BluetoothAdapter.ACTION_DISCOVERY_FINISHED);
// 注冊广播
registerReceiver(receiver, filter);
} public void btnSearch(View v) {
// 设置进度条
setProgressBarIndeterminateVisibility(true);
setTitle("正在搜索...");
// 推断是否在搜索,假设在搜索。就取消搜索
if (mBluetoothAdapter.isDiscovering()) {
mBluetoothAdapter.cancelDiscovery();
}
// 開始搜索
mBluetoothAdapter.startDiscovery();
} // 广播接收器
private final BroadcastReceiver receiver = new BroadcastReceiver() { @Override
public void onReceive(Context context, Intent intent) {
// 收到的广播类型
String action = intent.getAction();
// 发现设备的广播
if (BluetoothDevice.ACTION_FOUND.equals(action)) {
// 从intent中获取设备
BluetoothDevice device = intent
.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
// 推断是否配对过
if (device.getBondState() != BluetoothDevice.BOND_BONDED) {
// 加入到列表
bluetoothDevices.add(device.getName() + ":"
+ device.getAddress() + "\n");
arrayAdapter.notifyDataSetChanged(); }
// 搜索完毕
} else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED
.equals(action)) {
// 关闭进度条
setProgressBarIndeterminateVisibility(true);
setTitle("搜索完毕!");
}
}
}; // client
@Override
public void onItemClick(AdapterView<? > parent, View view, int position,
long id) {
// 先获得蓝牙的地址和设备名
String s = arrayAdapter.getItem(position);
// 单独解析地址
String address = s.substring(s.indexOf(":") + 1).trim(); // 主动连接蓝牙
try {
// 推断是否在搜索,假设在搜索,就取消搜索
if (mBluetoothAdapter.isDiscovering()) {
mBluetoothAdapter.cancelDiscovery();
}
try {
// 推断能否够获得
if (device == null) {
// 获得远程设备
device = mBluetoothAdapter.getRemoteDevice(address);
}
// 開始连接
if (clientSocket == null) {
clientSocket = device
.createRfcommSocketToServiceRecord(MY_UUID);
// 连接
clientSocket.connect();
// 获得输出流
os = clientSocket.getOutputStream(); }
} catch (Exception e) {
// TODO: handle exception
}
// 假设成功获得输出流
if (os != null) {
os.write("Hello Bluetooth!".getBytes("utf-8"));
} } catch (Exception e) {
// TODO: handle exception
}
} // 服务端。须要监听client的线程类
private Handler handler = new Handler() {
public void handleMessage(android.os.Message msg) {
Toast.makeText(MainActivity.this, String.valueOf(msg.obj),
Toast.LENGTH_SHORT).show();
super.handleMessage(msg);
}
}; // 线程服务类
private class AcceptThread extends Thread {
private BluetoothServerSocket serverSocket;
private BluetoothSocket socket;
// 输入 输出流
private OutputStream os;
private InputStream is; public AcceptThread() {
try {
serverSocket = mBluetoothAdapter
.listenUsingRfcommWithServiceRecord(NAME, MY_UUID);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
} @Override
public void run() {
// 截获client的蓝牙消息
try {
socket = serverSocket.accept(); // 假设堵塞了。就会一直停留在这里
is = socket.getInputStream();
os = socket.getOutputStream();
// 不断接收请求,假设client没有发送的话还是会堵塞
while (true) {
// 每次仅仅发送128个字节
byte[] buffer = new byte[128];
// 读取
int count = is.read();
// 假设读取到了,我们就发送刚才的那个Toast
Message msg = new Message();
msg.obj = new String(buffer, 0, count, "utf-8");
handler.sendMessage(msg);
}
} catch (Exception e) {
// TODO: handle exception
}
}
}
}

Google的API上事实上已经说的非常具体了的,这里我再提供一份PDF学习文档,能够更加直观的了解

PDF文档下载地址:http://download.csdn.net/detail/qq_26787115/9416162

Demo下载地址:http://download.csdn.net/detail/qq_26787115/9416158

Android BLE与终端通信(三)——client与服务端通信过程以及实现数据通信的更多相关文章

  1. 警察与小偷的实现之中的一个client与服务端通信

    来源于ISCC 2012 破解关第四题 目的是通过逆向police.实现一个thief,可以与police进行通信 实际上就是一个RSA加密通信的样例,我们通过自己编写client和服务端来实现上面的 ...

  2. Android BLE与终端通信(三)——客户端与服务端通信过程以及实现数据通信

    Android BLE与终端通信(三)--客户端与服务端通信过程以及实现数据通信 前面的终究只是小知识点,上不了台面,也只能算是起到一个科普的作用,而同步到实际的开发上去,今天就来延续前两篇实现蓝牙主 ...

  3. Android BLE与终端通信(五)——Google API BLE4.0低功耗蓝牙文档解读之案例初探

    Android BLE与终端通信(五)--Google API BLE4.0低功耗蓝牙文档解读之案例初探 算下来很久没有写BLE的博文了,上家的技术都快忘记了,所以赶紧读了一遍Google的API顺便 ...

  4. Android BLE与终端通信(四)——实现服务器与客户端即时通讯功能

    Android BLE与终端通信(四)--实现服务器与客户端即时通讯功能 前面几篇一直在讲一些基础,其实说实话,蓝牙主要为多的还是一些概念性的东西,当你把概念都熟悉了之后,你会很简单的就可以实现一些逻 ...

  5. Android BLE与终端通信(二)——Android Bluetooth基础科普以及搜索蓝牙设备显示列表

    Android BLE与终端通信(二)--Android Bluetooth基础搜索蓝牙设备显示列表 摘要 第一篇算是个热身,这一片开始来写些硬菜了,这篇就是实际和蓝牙打交道了,所以要用到真机调试哟, ...

  6. Android BLE与终端通信(一)——Android Bluetooth基础API以及简单使用获取本地蓝牙名称地址

    Android BLE与终端通信(一)--Android Bluetooth基础API以及简单使用获取本地蓝牙名称地址 Hello,工作需要,也必须开始向BLE方向学习了,公司的核心技术就是BLE终端 ...

  7. Netty入门之客户端与服务端通信(二)

    Netty入门之客户端与服务端通信(二) 一.简介 在上一篇博文中笔者写了关于Netty入门级的Hello World程序.书接上回,本博文是关于客户端与服务端的通信,感觉也没什么好说的了,直接上代码 ...

  8. winsock 编程(简单客户&服务端通信实现)

    winsock 编程(简单客户&服务端通信实现) 双向通信:Client send message to Server, and if  Server receive the message, ...

  9. 基于开源SuperSocket实现客户端和服务端通信项目实战

    一.课程介绍 本期带给大家分享的是基于SuperSocket的项目实战,阿笨在实际工作中遇到的真实业务场景,请跟随阿笨的视角去如何实现打通B/S与C/S网络通讯,如果您对本期的<基于开源Supe ...

随机推荐

  1. pthread_create()创建线程时传入多个參数

    因为接口仅仅定义了一个入參void *arg int pthread_create(pthread_t *tidp,const pthread_attr_t *attr, (void*)(*start ...

  2. 【cocos2d-js官方文档】二十、moduleConfig.json

    概述 该配置文件相当于v2版本号中的jsloader.js. 改造的目的是为了使得配置纯粹化,同一时候也能比較好的支持cocos-console.cocos-utils甚至是用户自己定义脚本工具. 字 ...

  3. 0x28 IDA*

    一个早上做完了我真牛B 就是A*用于DFS啊,现在我才发现迭代加深真是个好东西. poj3460 %了%了我们的目标是把它的顺序变对,那么第i个位置的值+1是要等于第i+1个位置的值的.对于一个操作, ...

  4. numpy的scale就是 x-mean/std

    >>> from sklearn import preprocessing >>> import numpy as np >>> a=np.arr ...

  5. 【HDU 5015】233 Matrix

    [题目链接] http://acm.hdu.edu.cn/showproblem.php?pid=5015 [算法] 矩阵乘法 [代码] #include<bits/stdc++.h> u ...

  6. 杂项-报表:Formula One(Active电子表格控件)

    ylbtech-杂项-报表:Formula One(Active电子表格控件) Formula One是一款应用软件,是由Visual Components公司开发的基于Windows平台的.类似于E ...

  7. ROS常用知识指南

    前言:介绍一些基础常用的知识. 一.标准单位 二.坐标表现方式 三.默认安装位置 通过apt-get安装的软件包, 默认安装位置为:/opt/ros/kinetic/share 四.软件包安装流程 4 ...

  8. BZOJ 1786 DP

    思路: 肯定从小往大填合适了 f[i][j]表示第i个数是j的最少逆序对数 f[i][j]=min(f[i-1][k]+cost,f[i][j]) 优化一下成O(nk)就好啦~ (不优化也可以过的-) ...

  9. Scrapy Architecture overview--官方文档

    原文地址:https://doc.scrapy.org/en/latest/topics/architecture.html This document describes the architect ...

  10. 日志记录~log4.net

    1. 添加Log4net引用 2. 添加配置文件 Log.config <?xml version="1.0" encoding="utf-8"?> ...