博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Windows Mobile下通过蓝牙(Bluetooth)发送大文件的实现
阅读量:5008 次
发布时间:2019-06-12

本文共 3975 字,大约阅读时间需要 13 分钟。

背景

在前一篇文章 讲述了如何使用Obex开发Bluetooth文件传输的应用。其中同学指出不能传输大文件,因此需要实现大文件的传输。

 

简介

本文讲述在Windows Mobile下通过蓝牙发送大文件的实现。

 

实现

这个发送大文件的实现是Brecham.Obex的例子程序,基于Brecham.Obex库来开发的,Brecham.Obex是基于32feet.net的基础上实现的,可以参考。这个库可以免费使用,但是需要注明依赖。另一方面我没有找到这个库的源代码。

 

发送程序的主窗口。

 

使用System.Windows.Forms.OpenFileDialog弹出选择需要发送文件的窗口。

DialogResult result = openFileDialog1.ShowDialog(); if (result == DialogResult.OK)             {
State state = new State(); //------------------------------------------------------ // Get the file //------------------------------------------------------ String putName; // = "dummy.txt"; try {
state.m_fileStream = new FileStream(openFileDialog1.FileName, FileMode.Open, FileAccess.Read); }catch(IOException ioex){
MessageBox.Show("Failed to open the file: " + ioex.ToString()); return; } state.m_progressStream = new ReadProgressStream(state.m_fileStream); state.m_progressStream.SetTotalReadLength(state.m_fileStream.Length); putName = Path.GetFileName(openFileDialog1.FileName); }//if

把选择的文件赋值给ReadProgressStream,这样就可以实现传输进度条功能了。但是在现实使用中,这个功能还是不work。

 

如果选择了发送文件,弹出设备搜索窗口,对接收设备进行选择。设备选择和链接对话框其实在32feet.net里面实现的。

//------------------------------------------------------ // Get the peer //------------------------------------------------------ ProtocolFamily pf = this.protocolComboBox1.SelectedProtocol; state.m_conn = new Brecham.Obex.Net.GuiObexSessionConnection(pf, false, this.labelStatus); // Set our receive size and restrict our send size state.m_conn.ObexBufferSize = 2028; state.m_conn.MaxSendSize = 2048; try {
if (!state.m_conn.Connect()) {
//user cancelled the connect return; } } catch (Exception ex) {
Type typeOfEx = ex.GetType(); if (typeof(ObexResponseException) != typeOfEx && typeof(System.Net.ProtocolViolationException) != typeOfEx && typeof(System.IO.IOException) != typeOfEx && typeof(System.Net.Sockets.SocketException) != typeOfEx) {
// Not one of the expected exception types, rethrow! throw; } String descr = ex.Message + "\r\n" + ex.GetType().ToString(); this.labelStatus.Text = "Connect failed: " + descr; MessageBox.Show(descr, "Connect failed"); return; }

选择设备后,开始发送过程了。

Stream peerStream = state.m_conn.PeerStream; //------------------------------------------------------ // Send //------------------------------------------------------ try {
ObexClientSession sess = state.m_conn.ObexClientSession; // this.labelStatus.Text = "Sending..."; this.progressBar1.Visible = true; StartProgressBarUpdater(state); //sess.PutFrom(state.m_progressStream, putName, null, state.m_fileStream.Length); state.m_putCaller = new PutFromNtiCaller(sess.PutFrom); AsyncCallback cb = new AsyncCallback(PutCompleted); state.SetStartTime(); IAsyncResult ar = state.m_putCaller.BeginInvoke( state.m_progressStream, putName, null, state.m_fileStream.Length, cb, state); // Enable the Cancel button m_cancelled = false; buttonCancel.Enabled = true; buttonCancel.Tag = sess; // Give the button access to the session. } catch {
// All OBEX errors occur on the delegate.BeginInvoke's thread, and // thus are seen on calling EndInvoke in the PutCompleted method. // // Just ensure the streams are closed etc, and rethrow. state.Dispose(); throw; }

通过ObexClientSession 保存发送到会话,用于取消发送。PutFromNtiCaller的BeginInvoke()通过线程发送文件。

发送完毕,10M的文件花了3分45秒。我试过30M的文件也成功,但是文件不知道放哪里了。我对发送文件的设计是这样认为的,我不提倡用蓝牙发送很大的文件,如果需要蓝牙发送很大很大的文件,那样需要考虑设计方案是否合理,为什么用蓝牙发送那么大的文件,真正的需求是什么,可替换方案是什么。如果确实有使用蓝牙发送大文件的需要,可以使用Brecham.Obex来实现。

 

接收文件的设备,这个设备不需要安装任何程序,一般的Windows Mobile都有Obex的Service在运行。

 

文件保存后放到My Documents里面了。

 

其他相关文章

可以参考我以前写的关于Bluetooth的文件。

(可以用于把Bluetooth的GPS receiver变成串口)

(简单的Bluetooth应用)

 

环境: VS 2008 + XP + Windows Mobile 6.5 + Brecham.Obex + 32feet.net

源代码:

转载于:https://www.cnblogs.com/procoder/archive/2009/10/01/Windows_Mobile_Bluetooth_Transfer_Big_File.html

你可能感兴趣的文章
Maven内置变量
查看>>
JAVA大数模板
查看>>
PLsql的汉化工具
查看>>
将excel导入转化为json格式数据
查看>>
响应器
查看>>
javascript实现数据结构与算法系列:线性表的静态单链表存储结构
查看>>
【HDU】2295 Radar
查看>>
恶意代码分析
查看>>
【转】每天一个linux命令(3):pwd命令
查看>>
计算机理解
查看>>
merge-two-sorted-lists
查看>>
MySQL(3)
查看>>
poj1061——扩展gcd水题
查看>>
UVa400.Unix ls
查看>>
POJ 2299 Ultra-QuickSort 归并排序、二叉排序树,求逆序数
查看>>
Educational Codeforces Round 60 (Rated for Div. 2) C. Magic Ship
查看>>
Windows 2008 R2系统开机时如何不让Windows进行磁盘检测?
查看>>
Reporting Service服务SharePoint集成模式安装配置(1、虚拟机+ 2、AD域环境配置)
查看>>
WP7应用开发笔记(18) 本地化与多语言
查看>>
解决 .so文件64与32不兼容问题
查看>>