使用 32feet 和 C# 进行蓝牙文件传输

发布于 2024-12-05 01:24:01 字数 138 浏览 0 评论 0原文

我正在尝试使用蓝牙和 32feet.net 和 c# 将文件传输到另一台设备。当我尝试连接其他设备时,我想在客户端设备中显示警报。

我该怎么做?

I am trying to transfer the file to another device using bluetooth and 32feet.net and c#. When I am trying to connect the other device I want to show an alert in the client device.

How do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无敌元气妹 2024-12-12 01:24:01
  1. 什么样的警报/消息?
  2. 确保蓝牙设备已打开、连接并经过身份验证。
  3. 您是否传递了错误的设备地址?

我使用以下代码,它工作正常:

var file = @"C:\foo.JPG";
var uri = new Uri("obex://" + "REMOTE_DEVICE_ADDRESS_HERE" + "/" + file);
var request = new ObexWebRequest(uri);
request.ReadFile(file);
var response = (ObexWebResponse)request.GetResponse();
//check response.StatusCode
response.Close();
  1. what kind of alert/message?
  2. make sure the blue tooth devices have been switched on, and connected, and authenticated.
  3. did you pass the wrong device address?

I use the following code, it's working fine:

var file = @"C:\foo.JPG";
var uri = new Uri("obex://" + "REMOTE_DEVICE_ADDRESS_HERE" + "/" + file);
var request = new ObexWebRequest(uri);
request.ReadFile(file);
var response = (ObexWebResponse)request.GetResponse();
//check response.StatusCode
response.Close();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文