蓝牙功能(通过 J2ME)
我正在寻找有关蓝牙功能的一些具体信息(通过 J2ME):
- 是否可以在外部进行编程,给定的移动设备将使用哪个“名称”将自身呈现给外部蓝牙世界?
- 两部手机是否可以在(非手动)软件控制下通过发送信息/数据来相互“交谈”?
I'm looking for some specific info about bluetooth capabilities (via J2ME):
- is it possible to program externally with which 'name' given mobile will present itself to external bluetooth world ?
- is it possible for two phone to 'speak' with each other in terms of sending info/data under (not manual) software control ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的意思是“您可以设置设备的友好名称吗”,不,您不能。您可以访问设备的友好名称,但这实际上仅用于呈现给用户。要寻址另一台设备,您可以使用其蓝牙地址。
是的,您可以使用 RFCOMM 在两个设备之间创建连接并在它们之间传输字节。
If you mean "can you set the device's friendly name", no you can't. You can access the device's friendly name, however this is only really for presenting to the user. To address another device you would use its bluetooth address.
Yes you can use RFCOMM to create a connection between two devices and transfer bytes between them.