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. the rendering library is more recent than your version of android studio

    近期更新了自己Android Studio中的SDK到最新版本号,AS的一部分配置改动了. 然后 在打开布局文件的时候 会出现 渲染错误 Rendering problem the rendering ...

  2. Codeforces Round #260 (Div. 1) 455 A. Boredom (DP)

    题目链接:http://codeforces.com/problemset/problem/455/A A. Boredom time limit per test 1 second memory l ...

  3. ftk学习记(首篇)

    [ 声明:版权全部,欢迎转载,请勿用于商业用途.  联系信箱:feixiaoxing @163.com] 非常早之前就知道ftk了,当时主要是由于买了李先静的书,所以知道了这么一个项目.由于对这样的g ...

  4. 造个简单的轮子倒是不难,但可用性健壮性高到qt这样全世界都在用,就几乎不可能了

    造个简单的轮子倒是不难,但可用性健壮性高到qt这样全世界都在用,就几乎不可能了比如自己写个事件循环实现信号槽,还真不难,我这边的架构里就这么搞了个仿osgi的事件总线嵌入式实时操作系统上能用的大型gu ...

  5. Linux 下安装apache2.4

    Linux 下安装apache2.4 下载,解压,配置安装! 好生麻烦! 安装一个apache,需要很多依赖!比如apr.apr-util.pcre等等. 这些依赖有可能还需要别的更多的依赖! 真心的 ...

  6. elasticsearch源码分析之search模块(client端)

    elasticsearch源码分析之search模块(client端) 注意,我这里所说的都是通过rest api来做的搜索,所以对于接收到请求的节点,我姑且将之称之为client端,其主要的功能我们 ...

  7. ubuntu在桌面创建快捷方式

    在/usr/share/applications下列出 *.desktop文件 例如: 首先查看所要创建的快捷方式有么有: ls /usr/share/applications | grep ecli ...

  8. mvel2.0语法指南

    虽然mvel吸收了大量的java语法,但作为一个表达式语言,还是有着很多重要的不同之处,以达到更高的效率,比如:mvel像正则表达式一样,有直接支持集合.数组和字符串匹配的操作符. 除了表达式语言外, ...

  9. here.less

    <html><head><title>Test Less</title><link rel="stylesheet/less" ...

  10. MFC框架下Opengl窗口闪屏问题解决方案

    转自https://blog.csdn.net/niusiqiang/article/details/43116153 虽然启用了双缓冲,但是仍然会出闪屏的情况,这是由于OpenGL自己有刷新背景的函 ...