服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - C# - Windows系统中使用C#编写蓝牙通信程序的简单实例

Windows系统中使用C#编写蓝牙通信程序的简单实例

2021-11-18 11:34hzy3774 C#

这篇文章主要介绍了Windows系统中使用C#编写蓝牙通信程序的简单实例,文中的例子使用到了32feet.NET中的InTheHand.Net.Personal类库,需要的朋友可以参考下

现在很多电脑提供了蓝牙支持,很多笔记本网卡也集成了蓝牙功能,也可以采用usb蓝牙方便的连接手机等蓝牙设备进行通信。
操作蓝牙要使用类库inthehand.net.personal
首先在项目中引用该类库;

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
static void main(string[] args)
{
  bluetoothradio bluetoothradio = bluetoothradio.primaryradio;
  if (bluetoothradio == null)
  {
  console.writeline("没有找到本机蓝牙设备!");
  }
  else
  {
  console.writeline("classofdevice: " + bluetoothradio.classofdevice);
  console.writeline("hardwarestatus: " + bluetoothradio.hardwarestatus);
  console.writeline("hcirevision: " + bluetoothradio.hcirevision);
  console.writeline("hciversion: " + bluetoothradio.hciversion);
  console.writeline("lmpsubversion: " + bluetoothradio.lmpsubversion);
  console.writeline("lmpversion: " + bluetoothradio.lmpversion);
  console.writeline("localaddress: " + bluetoothradio.localaddress);
  console.writeline("manufacturer: " + bluetoothradio.manufacturer);
  console.writeline("mode: " + bluetoothradio.mode);
  console.writeline("name: " + bluetoothradio.name);
  console.writeline("remote:" + bluetoothradio.remote);
  console.writeline("softwaremanufacturer: " + bluetoothradio.softwaremanufacturer);
  console.writeline("stackfactory: " + bluetoothradio.stackfactory);
  }
  console.readkey();
}

 如果pc插入了蓝牙适配器,便会显示蓝牙相关信息:

Windows系统中使用C#编写蓝牙通信程序的简单实例

 然后我们就要利用蓝牙收发文件了:
前提是蓝牙设备(如手机)已经和pc配对了

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
public partial class form1 : form
{
  bluetoothradio radio = null;//蓝牙适配器
  string sendfilename = null;//发送文件名
  bluetoothaddress sendaddress = null;//发送目的地址
  obexlistener listener = null;//监听器
  string recdir = null;//接受文件存放目录
  thread listenthread, sendthread;//发送/接收线程
 
  public form1()
  {
    initializecomponent();
    radio = bluetoothradio.primaryradio;//获取当前pc的蓝牙适配器
    checkforillegalcrossthreadcalls = false;//不检查跨线程调用
    if (radio == null)//检查该电脑蓝牙是否可用
    {
      messagebox.show("这个电脑蓝牙不可用!", "提示", messageboxbuttons.ok, messageboxicon.information);
    }
    recdir = environment.getfolderpath(environment.specialfolder.desktop);
    labelrecdir.text = recdir;
  }
 
  private void buttonselectbluetooth_click(object sender, eventargs e)//选择远程蓝牙设备
  {
    selectbluetoothdevicedialog dialog = new selectbluetoothdevicedialog();
    dialog.showremembered = true;//显示已经记住的蓝牙设备
    dialog.showauthenticated = true;//显示认证过的蓝牙设备
    dialog.showunknown = true;//显示位置蓝牙设备
    if (dialog.showdialog() == dialogresult.ok)
    {
      sendaddress = dialog.selecteddevice.deviceaddress;//获取选择的远程蓝牙地址
      labeladdress.text = "地址:" + sendaddress.tostring() + "  设备名:" + dialog.selecteddevice.devicename;
    }
  }
 
  private void buttonselectfile_click(object sender, eventargs e)//选择要发送的本地文件
  {
    openfiledialog dialog = new openfiledialog();
    if (dialog.showdialog() == dialogresult.ok)
    {
      sendfilename = dialog.filename;//设置文件名
      labelpath.text = path.getfilename(sendfilename);
    }
  }
 
  private void buttonsend_click(object sender, eventargs e)//发送按钮
  {
    sendthread = new thread(sendfile);//开启发送文件线程
    sendthread.start();
  }
 
  private void sendfile()//发送文件方法
  {
    obexwebrequest request = new obexwebrequest(sendaddress, path.getfilename(sendfilename));//创建网络请求
    webresponse response = null;
    try
    {
      buttonsend.enabled = false;
      request.readfile(sendfilename);//发送文件
      labelinfo.text = "开始发送!";
      response = request.getresponse();//获取回应
      labelinfo.text = "发送完成!";
    }
    catch (system.exception ex)
    {
      messagebox.show("发送失败!", "提示", messageboxbuttons.ok, messageboxicon.warning);
      labelinfo.text = "发送失败!";
    }
    finally
    {
      if (response != null)
      {
        response.close();
        buttonsend.enabled = true;
      }
    }
  }
 
  private void buttonselectrecdir_click(object sender, eventargs e)//选择接受目录
  {
    folderbrowserdialog dialog = new folderbrowserdialog();
    dialog.description = "请选择蓝牙接收文件的存放路径";
    if (dialog.showdialog() == dialogresult.ok)
    {
      recdir = dialog.selectedpath;
      labelrecdir.text = recdir;
    }
  }
 
  private void buttonlisten_click(object sender, eventargs e)//开始/停止监听
  {
    if (listener == null || !listener.islistening)
    {
      radio.mode = radiomode.discoverable;//设置本地蓝牙可被检测
      listener = new obexlistener(obextransport.bluetooth);//创建监听
      listener.start();
      if (listener.islistening)
      {
        buttonlisten.text = "停止";
        labelrecinfo.text = "开始监听";
        listenthread = new thread(receivefile);//开启监听线程
        listenthread.start();
      }
    }
    else
    
      listener.stop();
      buttonlisten.text = "监听";
      labelrecinfo.text = "停止监听";
    }
  }
 
  private void receivefile()//收文件方法
  {
    obexlistenercontext context = null;
    obexlistenerrequest request = null;
    while (listener.islistening)
    {
      context = listener.getcontext();//获取监听上下文
      if (context == null)
      {
        break;
      }
      request = context.request;//获取请求
      string uristring = uri.unescapedatastring(request.rawurl);//将uri转换成字符串
      string recfilename = recdir + uristring;
      request.writefile(recfilename);//接收文件
      labelrecinfo.text = "收到文件" + uristring.trimstart(new char[] { '/' });
    }
  }
 
  private void form1_formclosed(object sender, formclosedeventargs e)
  {
    if (sendthread != null)
    {
      sendthread.abort();
    }
    if (listenthread != null)
    {
      listenthread.abort();
    }
    if (listener != null && listener.islistening)
    {
      listener.stop();
    }
  }
}

程序界面:

Windows系统中使用C#编写蓝牙通信程序的简单实例

selectbluetoothdevicedialog是一个inthehand.net.personal提供的窗体,用于选择蓝牙设备:

Windows系统中使用C#编写蓝牙通信程序的简单实例

从手机往电脑发送文件需要在电脑上开启监听obexlistener,才能收到文件。

Windows系统中使用C#编写蓝牙通信程序的简单实例

核心代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
bluetoothradio radio = null;//蓝牙适配器
string sendfilename = null;//发送文件名
bluetoothaddress sendaddress = null;//发送目的地址
obexlistener listener = null;//监听器
string recdir = null;//接受文件存放目录
thread listenthread, sendthread;//发送/接收线程
 
radio = bluetoothradio.primaryradio;//获取当前pc的蓝牙适配器
 
//关于蓝牙设备选择对话框
selectbluetoothdevicedialog dialog = new selectbluetoothdevicedialog();
dialog.showremembered = true;//显示已经记住的蓝牙设备
dialog.showauthenticated = true;//显示认证过的蓝牙设备
dialog.showunknown = true;//显示位置蓝牙设备
sendaddress = dialog.selecteddevice.deviceaddress;//获取选择的远程蓝牙地址
 
//发送文件操作
obexwebrequest request = new obexwebrequest(sendaddress, path.getfilename(sendfilename));//创建网络请求
webresponse response = null;
request.readfile(sendfilename);//发送文件
response = request.getresponse();//获取回应
response.close();
 
//接收文件
radio.mode = radiomode.discoverable;//设置本地蓝牙可被检测
listener = new obexlistener(obextransport.bluetooth);//创建监听
listener.start();
listener.stop();
 
obexlistenercontext context = null;
obexlistenerrequest request = null;
context = listener.getcontext();//获取监听上下文
request = context.request;//获取请求
string uristring = uri.unescapedatastring(request.rawurl);//将uri转换成字符串
string recfilename = recdir + uristring;
request.writefile(recfilename);//接收文件
labelrecinfo.text = "收到文件" + uristring.trimstart(new char[] { '/' }

 

ps:关于inthehand.net.personal
inthehand.net.personal.dll来源于32feet.net。
32feet.net是shared-source的项目,支持cf.net 2.0以及桌面版本.net framework,提供短距离领域(personal area networking technologie)的通信功能,支持bluetooth,infrared(irda)红外等. 想了解更多的信息可以参考其 官方主页,其项目的安装包和源码是放在微软的开源工程网站codeplex上面的,作为.net开发人员我们必须要上的网站就是codeplex~

延伸 · 阅读

精彩推荐
  • C#C#微信公众号与订阅号接口开发示例代码

    C#微信公众号与订阅号接口开发示例代码

    这篇文章主要介绍了C#微信公众号与订阅号接口开发示例代码,结合实例形式简单分析了C#针对微信接口的调用与处理技巧,需要的朋友可以参考下...

    smartsmile20127762021-11-25
  • C#利用C#实现网络爬虫

    利用C#实现网络爬虫

    这篇文章主要介绍了利用C#实现网络爬虫,完整的介绍了C#实现网络爬虫详细过程,感兴趣的小伙伴们可以参考一下...

    C#教程网11852021-11-16
  • C#如何使用C#将Tensorflow训练的.pb文件用在生产环境详解

    如何使用C#将Tensorflow训练的.pb文件用在生产环境详解

    这篇文章主要给大家介绍了关于如何使用C#将Tensorflow训练的.pb文件用在生产环境的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考借鉴...

    bbird201811792022-03-05
  • C#C#设计模式之Strategy策略模式解决007大破密码危机问题示例

    C#设计模式之Strategy策略模式解决007大破密码危机问题示例

    这篇文章主要介绍了C#设计模式之Strategy策略模式解决007大破密码危机问题,简单描述了策略模式的定义并结合加密解密算法实例分析了C#策略模式的具体使用...

    GhostRider10972022-01-21
  • C#VS2012 程序打包部署图文详解

    VS2012 程序打包部署图文详解

    VS2012虽然没有集成打包工具,但它为我们提供了下载的端口,需要我们手动安装一个插件InstallShield。网上有很多第三方的打包工具,但为什么偏要使用微软...

    张信秀7712021-12-15
  • C#三十分钟快速掌握C# 6.0知识点

    三十分钟快速掌握C# 6.0知识点

    这篇文章主要介绍了C# 6.0的相关知识点,文中介绍的非常详细,通过这篇文字可以让大家在三十分钟内快速的掌握C# 6.0,需要的朋友可以参考借鉴,下面来...

    雨夜潇湘8272021-12-28
  • C#SQLite在C#中的安装与操作技巧

    SQLite在C#中的安装与操作技巧

    SQLite,是一款轻型的数据库,用于本地的数据储存。其优点有很多,下面通过本文给大家介绍SQLite在C#中的安装与操作技巧,感兴趣的的朋友参考下吧...

    蓝曈魅11162022-01-20
  • C#深入理解C#的数组

    深入理解C#的数组

    本篇文章主要介绍了C#的数组,数组是一种数据结构,详细的介绍了数组的声明和访问等,有兴趣的可以了解一下。...

    佳园9492021-12-10