- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Windows系统中使用C#编写蓝牙通信程序的简单实例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
现在很多电脑提供了蓝牙支持,很多笔记本网卡也集成了蓝牙功能,也可以采用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插入了蓝牙适配器,便会显示蓝牙相关信息:
然后我们就要利用蓝牙收发文件了: 前提是蓝牙设备(如手机)已经和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();
}
}
}
|
程序界面:
selectbluetoothdevicedialog是一个inthehand.net.personal提供的窗体,用于选择蓝牙设备:
从手机往电脑发送文件需要在电脑上开启监听obexlistener,才能收到文件.
核心代码:
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~ 。
最后此篇关于Windows系统中使用C#编写蓝牙通信程序的简单实例的文章就讲到这里了,如果你想了解更多关于Windows系统中使用C#编写蓝牙通信程序的简单实例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!