- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在制作一个 Android 应用程序(EDIT1:在 Nexsus S 的 4.0.3 上开发),它通过蓝牙共享数据 P2P,但在连接两个设备时遇到了麻烦。我们的应用程序使用 NFC 将一台设备的 MAC 地址传递给另一台设备。然后,发送方创建一个 BlueToothServer 套接字实例并调用 accept,而接收方则使用收到的 MAC 地址创建一个 BluetoothDevice 实例并尝试连接。
我们遇到的问题是从 accept() 返回的 BluetoothSocket。它的文档明确指出它应该返回一个连接的套接字,但它返回一个断开连接的套接字,该套接字甚至无法通过调用 connect() 进行连接。我已经检查了套接字的 MAC 地址并清除了它,而返回的事实 accept() 意味着成功连接了足够长的时间来建立套接字,所以我不知道还有什么可以尝试的。
还值得一提的是,接收方的BluetoothSocket 在此期间声称它实际上已连接。显然,它只是在等待永远不会来自其他设备的数据时挂起,但我们知道在多个地方使用检查点,直到那时它总是声称已连接。
如有任何帮助或建议,我们将不胜感激。
其他相关信息:
发送者和接收者是同一个应用程序,但代表不同的 Activity 。本应用程序是一款游戏,加入游戏需要有游戏的人将游戏交给其他人,由NFC发起(最终要通过蓝牙发送的数据是加入游戏所需的数据)。发送者拥有游戏并且正在进行赠送游戏的 Activity ,而接收者正在进行想要接收游戏的 Activity ,然后进入赠送 Activity 以允许他们将其传递给其他人。现在要明确这一点,虽然我们现在可以合并这两个 Activity ,但我们稍后将使用相同的技术作为实际游戏的一部分,在这种情况下无法确保两者都开启相同的 Activity ,因此无论如何我们都需要在某个时候克服不同 Activity 的问题。
我们也确信 UUID 正确匹配。我们有一个具有常量 UUID 的全局类,我们刚刚在某个时候生成并使用了它。根据您的目的,在某些情况下,UUID 需要是特定的东西,但我也理解它,对于这种特定用途,我们应该生成我们自己的。
创建 BluetoothServerSocket 并从中调用 accept() 作为 NdefPushbackComplete 回调的一部分,因此在发送方开始设置其服务器套接字之前,另一部手机肯定有 Ndef 消息。
客户端或服务器蓝牙代码都没有像在线常见的那样在自己的线程上运行,这是设计使然,因为我们希望交换在任何一方可以做任何其他事情之前完全发生。
如果我忘记提及任何重要的事情,我会很乐意提供。最后,这是客户端和服务器端代码。它的这个版本使用了一个不安全的套接字,但是我已经尝试了两种方法,并且用于测试它的手机是配对的。
客户:
String s = new String(msg.getRecords()[0].getPayload());
otherBluetoothMACAddress = s;
Log.d(DEV, "WaitingToGetGame: Other BT Address... "
+ otherBluetoothMACAddress);
Toast.makeText(getApplicationContext(), s, Toast.LENGTH_LONG).show();
Log.d(DEV, "WaitingToGetGame: Getting remote device");
BluetoothDevice bluetoothDevice = bluetoothAdapter
.getRemoteDevice(otherBluetoothMACAddress);
ObjectInputStream objectInputStream;
ObjectOutputStream objectOutputStream;
try
{
Log.d(DEV, "WaitingToGetGame: Getting BluetoothSocket");
bluetoothSocket = bluetoothDevice
.createInsecureRfcommSocketToServiceRecord(SDP_UUID);
Log.d(DEV, "WaitingToGetGame: Connecting...");
bluetoothSocket.connect();
Log.d(DEV,
"WaitingToGetGame: Bluetooth "
+ ((bluetoothSocket.isConnected()) ? ("is ") : ("is NOT "))
+ "Connected.");
Log.d(DEV, "WaitingToGetGame: Getting input stream");
bluetoothInputStream = bluetoothSocket.getInputStream();
Log.d(DEV,
"WaitingToGetGame: Bluetooth "
+ ((bluetoothSocket.isConnected()) ? ("is ") : ("is NOT "))
+ "Connected.");
Log.d(DEV, "WaitingToGetGame: Getting output stream");
bluetoothOutputStream = bluetoothSocket.getOutputStream();
Log.d(DEV,
"WaitingToGetGame: Bluetooth "
+ ((bluetoothSocket.isConnected()) ? ("is ") : ("is NOT "))
+ "Connected.");
objectInputStream = new ObjectInputStream(bluetoothInputStream);
objectOutputStream = new ObjectOutputStream(bluetoothOutputStream);
Log.d(DEV, this.getClass().getSimpleName() + ": Receiving game data");
game = (Game) objectInputStream.readObject();
Log.d(DEV, this.getClass().getSimpleName() + ": Sending acknowledgment.");
objectOutputStream.writeObject(new Boolean(true));
objectInputStream.close();
objectOutputStream.close();
bluetoothInputStream.close();
bluetoothOutputStream.close();
bluetoothInputStream = null; // GC
bluetoothOutputStream = null; // GC
bluetoothSocket.close();
bluetoothSocket = null;
服务器:
BluetoothServerSocket bluetoothServerSocket = null;
ObjectInputStream objectInputStream;
ObjectOutputStream objectOutputStream;
try
{
Log.d(DEV, this.getClass().getSimpleName()
+ ": Getting BluetoothServerSocket");
// bluetoothServerSocket = bluetoothAdapter
// .listenUsingRfcommWithServiceRecord(user.getName(), SDP_UUID);
bluetoothServerSocket = bluetoothAdapter
.listenUsingInsecureRfcommWithServiceRecord(user.getName(), SDP_UUID);
Log.d(DEV, this.getClass().getSimpleName() + ": Waiting for connection.");
bluetoothSocket = bluetoothServerSocket.accept();
bluetoothServerSocket.close();
BluetoothDevice dev = bluetoothSocket.getRemoteDevice();
Log.d(DEV, dev.getAddress());
Log.d(DEV, this.getClass().getSimpleName() + ": Bluetooth "
+ ((bluetoothSocket.isConnected()) ? ("is ") : ("is NOT "))
+ "Connected.");
// At this point bluetoothSocket should be ready to use.
Log.d(DEV, this.getClass().getSimpleName() + ": Getting input stream");
bluetoothInputStream = bluetoothSocket.getInputStream();
Log.d(DEV, this.getClass().getSimpleName() + ": Bluetooth "
+ ((bluetoothSocket.isConnected()) ? ("is ") : ("is NOT "))
+ "Connected.");
Log.d(DEV, this.getClass().getSimpleName() + ": Getting output stream");
bluetoothOutputStream = bluetoothSocket.getOutputStream();
// Log.d(DEV, this.getClass().getSimpleName()
// + ": Attempting direct connect()");
// bluetoothSocket.connect();
objectInputStream = new ObjectInputStream(bluetoothInputStream);
objectOutputStream = new ObjectOutputStream(bluetoothOutputStream);
Log.d(DEV, this.getClass().getSimpleName() + ": Sending game data.");
objectOutputStream.writeObject(game);
Log.d(DEV, this.getClass().getSimpleName() + ": Waiting for response.");
Boolean response = (Boolean) objectInputStream.readObject();
objectInputStream.close();
objectOutputStream.close();
bluetoothInputStream.close();
bluetoothOutputStream.close();
bluetoothInputStream = null; // GC
bluetoothOutputStream = null; // GC
bluetoothSocket.close();
bluetoothSocket = null;
}// try
catch( IOException e )
{
Log.d(
DEV,
this.getClass().getSimpleName() + ": "
+ java.util.Arrays.toString(e.getStackTrace()));
e.printStackTrace();
return;
}
catch( ClassNotFoundException e )
{
// TODO Auto-generated catch block
e.printStackTrace();
}
最佳答案
到目前为止我找不到你程序中的错误,但是:
显然,它只是在等待从 future 自其他设备的数据时挂起,但我们知道在多个地方使用检查点,直到那时它一直声称已连接。
实际上,这意味着 2 个设备已连接,只是您的 BT 客户端应用程序没有连接套接字 -> 它连接到其他地方。
您可以尝试几种方法:
您必须用 try/catch 包围您的阻塞调用,否则您不能肯定地说您的代码按预期工作。因此,在客户端代码中包含 bluetoothSocket.connect();,在服务器代码中包含 bluetoothSocket = bluetoothServerSocket.accept();。 客户端代码应该在 bt 客户端连接错误时捕获 IOException。我认为这是我找到的确定客户端连接是否成功的最佳方法! Ofc .isConnected() 之后可以像在您的代码中那样执行此操作。
在 ASyncTask 中运行您的蓝牙代码,如果不是(甚至更好)服务。我知道你宁愿不这样做,但它可以为你省去很多痛苦。我的 BT 代码从 ASyncTasks 完美运行 - 使用自定义 UUID,在 2 个 Android 之间,在 1 个 Android 和 1 个 BT-USB 加密狗之间,1 个 Android - 1 个嵌入式设备等。
把UUID改成SDP,看看能不能用!
但有一个问题,您是否尝试过从服务器端传输一些东西?它应该可以工作..让我知道这是否有效!
关于android - BluetoothServerSocket.accept() 返回未连接的 BluetoothSocket 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10506260/
我找到了 this excellent question and answer它以 x/y(加上 center x/y 和 degrees/radians)开始并计算旋转- 到 x'/y'。这个计算很
全部: 我已经创建了一个 Windows 窗体和一个按钮。在另一个线程中,我试图更改按钮的文本,但它崩溃了;但是如果我尝试更改按钮的颜色,它肯定会成功。我认为如果您更改任何 Windows 窗体控件属
本网站的另一个问题已证实,C 中没有缩写的字面后缀,并且可以执行以下操作: short Number = (short)1; 但是转换它和不这样做有什么区别: short Number = 1; 您使
我有下表: ID (int) EMAIL (varchar(50)) CAMPAIGNID (int) isSubscribe (bit) isActionByUser (bit) 此表存储了用户对事
也就是说,无需触发Javascript事件即可改变的属性,如何保留我手动选中或取消选中的复选框的状态,然后复制到另一个地方? 运行下面的代码片段并选中或取消选中其中的一些,然后点击“复制”: $('#
我在网上找到的所有关于递增指针导致段错误的示例都涉及指针的取消引用 - 如果我只想递增它(例如在 for 循环的末尾)并且我不在乎它是否最终进入无效内存,因为我不会再使用它。例如,在这个程序中,每次迭
我有一个 Spring MVC REST 服务,它使用 XStream 将消息与 XML 相互转换。 有什么方法可以将请求和响应中的 xml(即正文)打印到普通的 log4j 记录器? 在 Contr
做我的任务有一个很大的挑战,那就是做相互依赖的任务我在这张照片中说的。假设我们有两个任务 A 和 B,执行子任务 A1、A2 和 B1、B2,假设任务 B 依赖于 A。 要理想地执行任务 B,您应该执
通过阅读该网站上的几个答案,我了解到 CoInitialize(Ex) should be called by the creator of a thread 。然后,在该线程中运行的任何代码都可以使
这个问题已经困扰我一段时间了。我以前从未真正使用过 ListViews,也没有使用过 FirebaseListAdapters。我想做的就是通过显示 id 和用户位置来启动列表的基础,但由于某种原因,
我很难解释这两个(看似简单)句子的含义: “受检异常由编译器在编译时检查” 这是什么意思?编译器检查是否捕获了所有已检查的异常(在代码中抛出)? “未经检查的异常在运行时检查,而不是编译时” 这句话中
我有一个包含排除子字符串的文本文件,我想迭代该文件以检查并返回不带排除子字符串的输入项。 这里我使用 python 2.4,因此下面的代码可以实现此目的,因为 with open 和 any 不起作用
Spring 的缓存框架能否了解请求上下文的身份验证状态,或者更容易推出自己的缓存解决方案? 最佳答案 尽管我发现这个用例 super 奇怪,但您可以为几乎任何与 SpEL 配合使用的内容设置缓存条件
我有以下函数模板: template HeldAs* duplicate(MostDerived *original, HeldAs *held) { // error checking omi
如果我的应用程序具有设备管理员/设备所有者权限(未获得 root 权限),我如何才能从我的应用程序中终止(或阻止启动)另一个应用程序? 最佳答案 设备所有者可以阻止应用程序: DevicePolicy
非常简单的问题,但我似乎无法让它正常工作。 我有一个组件,其中有一些 XSLT(用于导航)。它通过 XSLT TBB 使用 XSLT Mediator 发布。 发布后
我正在将一个对象拖动到一个可拖放的对象内,该对象也是可拖动的。放置对象后,它会嵌套在可放置对象内。同样,如果我将对象拖到可放置的外部,它就不再嵌套。 但是,如果我经常拖入和拖出可放置对象,则可拖动对象
我正在尝试为按钮和弹出窗口等多个指令实现“取消选择”功能。也就是说,我希望当用户单击不属于指令模板一部分的元素时触发我的函数。目前,我正在使用以下 JQuery 代码: $('body').click
我从 this question 得到了下面的代码,该脚本用于在 Google tasks 上更改 iframe[src="about:blank"] 内的 CSS使用 Chrome 扩展 Tempe
我有一些 @Mock 对象,但没有指定在该对象上调用方法的返回值。该方法返回 int (不是 Integer)。我很惊讶地发现 Mockito 没有抛出 NPE 并返回 0。这是预期的行为吗? 例如:
我是一名优秀的程序员,十分优秀!