java.io.IOException:由peer重置连接

Son*_*hja 4 java android

我正在尝试管理手机和另一个蓝牙设备之间的连接.我正在使用java Android做这一切.这是我用于使用我的设备连接套接字的代码:

首先,我找到蓝牙设备,然后创建套接字:

BluetoothDevice btNonin = null;
for (BluetoothDevice device : pairedDevices)
{
        if (device.getName().contains("Nonin")) 
        {           
            // We found the device      
            exito = true;
            try
            {
                // We create the socket
                Method m = device.getClass().getMethod("createRfcommSocket", new Class[] {int.class});
                socket = (BluetoothSocket) m.invoke(device, 1);
                socket.connect();
            }
            catch (Exception e)
            {
                Dialogs.showInfoDialog(NONIN_OFF, this);
            }
       }
}
Run Code Online (Sandbox Code Playgroud)

我创建数据字节,我希望远程蓝牙接收使用一些代码将ASCII转换为字节:

String[] parts = mensaje.split(" ");
String res = "";
if(parts != null && parts.length > 0)
{
    for (String s : parts)
    {
        if (s.length() != 2)
           break;
            byte izq, der;
        izq = (byte)char2ascii(s.charAt(0));
        der = (byte)char2ascii(s.charAt(1));
        byte aux2 = (byte)((izq << 4) + der);
        res += (char)aux2;
    }
}
Run Code Online (Sandbox Code Playgroud)

然后我将数据发送到蓝牙设备:

// We send the data bytes
DataOutputStream dOut = new DataOutputStream(socket.getOutputStream());
dOut.writeBytes(res);
dOut.flush();
Run Code Online (Sandbox Code Playgroud)

直到这里它工作正常.它将数据字节发送到我的设备.但后来我想等待我设备的任何响应,然后我试试这个:

//Waiting for response
DataInputStream dIn = new DataInputStream(socket.getInputStream());
try
{
    byte response = '\u0000';
    while (dIn.readByte() == '\u0000')
    {
        response = dIn.readByte();
    }
    Dialogs.showInfoDialog("Response: " + response, this);
}
catch (Exception e)
{
    Dialogs.showInfoDialog("No se ha recibido respuesta: " + e.toString(), this);
}
Run Code Online (Sandbox Code Playgroud)

但是,在我创建dIn.readByte的行上,它显示消息Error:

java.io.IOException: Connection reset by peer
Run Code Online (Sandbox Code Playgroud)

我不知道为什么连接被重置或发生了什么,因为我可以调试线路:

DataInputStream dIn = new DataInputStream(socket.getInputStream());
Run Code Online (Sandbox Code Playgroud)

没有错误,所以我猜插座仍然打开......这里发生了什么?

非常感谢你的帮助!

use*_*421 7

这个问题有几个原因.典型的原因是您已写入已由对等方关闭的连接.换句话说,应用程序协议错误.

您的异常处理也需要工作.如果在超时之外的套接字上得到任何IOException,你必须关闭它,它已经死了.