0

我一直在寻找这个问题的高低。仍然找不到解决方案。基本上,我想通过 OBEX 推送服务(蓝牙)将加密文件从客户端(j2me)传输到服务器(j2me)。在模拟器中,它工作正常。客户端能够成功地在服务器上进行蓝牙发现查找。

但是,当我将应用程序放入手机时。它根本没有显示任何东西。我想这可能是服务器或客户端 url 问题。

谁能帮我?

这是我的一些代码(很可能是这导致了我的问题)。

(客户)

discoveryAgent.searchServices(null,new UUID[] { new UUID(1105) },
  (RemoteDevice) list.getRemoteDevices().elementAt(i), this);

(服务器)

sn = (SessionNotifier) Connector.open(
  "btgoep://localhost:1105;name=ObexPushServer;authenticate=false;master=false;encrypt=false");

我尝试用“00112233445566778899AABBCCDDEEFF”替换 1105(在服务器中),但结果仍然相同。

4

1 回答 1

0

您使用 UUID 的方式不正确。我很惊讶它甚至可以在模拟器中工作。

你需要像这样创建 UUID,

UUID uuid = new UUID("1105", true);

并在 searchServices 和 URL 中使用相同的 uuid。例如,

String url = "btgoep://localhost:" + uuid + ";name=ObexPushServer;authenticate=false;master=false;encrypt=false";
于 2009-09-20T18:40:37.867 回答