5

在我当前的项目中,需要通过蓝牙将文件从 Windows 计算机发送到 android 设备,而手机上除了标准状态之外没有任何东西,当然还有配对的蓝牙连接。我已经查看了 pybluez,它似乎很简单,可以在客户端和服务器架构之间发送文件(事实上,它在我的笔记本电脑和台式机之间发送得相当快),但我终其一生都找不到任何方法让 python 到建立连接后,将文件从计算机发送到 android;我的尝试一直是像这样从设备中获取蓝牙mac地址

nearby_devices = bluetooth.discover_devices(
    duration=8, lookup_names=True, flush_cache=True, lookup_class=False)

然后尝试像这样发送文件

port = 1
for addr, name in nearby_devices:
    bd_addr = addr
sock=bluetooth.BluetoothSocket( bluetooth.RFCOMM )
sock.connect((bd_addr, port))

sock.send("download-app")
sock.close()

当然,使用 pybluez 文档提供的示例脚本,我可以在客户端和服务器之间无缝发送文件,但我仍然无法将文件发送到所选的 android 设备(即使我指定了它的地址并且知道它在范围)

4

3 回答 3

8

你大部分都在那儿...

如您所知,您需要在蓝牙连接的另一端与之交谈。您只需将自定义服务器替换为知名服务(通常是这些选项之一)。

就我而言,我的手机支持“OBEX 对象推送”服务,所以我只需要连接到该服务并使用合适的客户端来使用正确的协议。幸运的是,PyOBEX 和 PyBluez 的组合在这里成功了!

以下代码(从 PyOBEX 和 PyBluez 示例快速修补在一起)在我的 Windows 10、Python 2.7 安装上运行,并在手机上创建一个简单的文本文件。

from bluetooth import *
from PyOBEX.client import Client
import sys

addr = sys.argv[1]
print("Searching for OBEX service on %s" % addr)

service_matches = find_service(name=b'OBEX Object Push\x00', address = addr )
if len(service_matches) == 0:
    print("Couldn't find the service.")
    sys.exit(0)

first_match = service_matches[0]
port = first_match["port"]
name = first_match["name"]
host = first_match["host"]

print("Connecting to \"%s\" on %s" % (name, host))
client = Client(host, port)
client.connect()
client.put("test.txt", "Hello world\n")
client.disconnect()

不过,看起来 PyOBEX 是一个非常小的包,并且与 Python 3 不兼容,因此如果需要,您可能需要进行一些移植。

于 2017-02-24T14:06:57.607 回答
2

我没有亲自探索过,但看看这个博客 -

http://recolog.blogspot.com/2013/07/transferring-files-via-bluetooth-using.html

作者使用 lightblue 包作为 Obex 协议的 API,并通过连接发送文件。现在 lightblue 包似乎没有维护。还有其他包,如 PyObex(我无法导入,无论出于何种原因),您也可以探索它们作为替代方案,但浅蓝色似乎是要走的路。

于 2017-02-22T01:50:05.217 回答
1

我基于 bitbucket 上的PyOBEX 代码制作了 PyOBEX 的Python 3 端口。到目前为止,我只测试了客户端功能,但我希望服务器也能正常工作,因为与 Python 3 的大多数兼容性问题是由于附加到字符串的二进制 blob 应该已经全部解决。struct.pack/struct.unpack

于 2019-12-11T08:33:00.860 回答