通过蓝牙发送序列化对象时StreamCorruptedException

时间:2013-03-31 19:16:11

标签: android bluetooth inputstream outputstream serializable

我有一个Serialized类,我需要通过蓝牙作为对象发送,并且还实现了Runnable。因此,我首先设置一些变量,然后将其作为一个对象发送给另一个Android设备执行,然后将其结果设置为变量,并将结果发送回其中一个变量。我一直在使用以下两种方法来序列化我的对象并在通过我的BluetoothSocket的OutputStream发送之前获取ByteArray,并反序列化ByteArray以取回我的对象​​。

public static byte[] serializeObject(Object o) throws IOException { 
    ByteArrayOutputStream bos = new ByteArrayOutputStream(); 

    ObjectOutput out = new ObjectOutputStream(bos);
    out.writeObject(o);  
    out.flush();
    out.close();

    // Get the bytes of the serialized object 
    byte[] buf = bos.toByteArray(); 

    return buf; 
} 

public static Object deserializeObject(byte[] b) throws OptionalDataException, ClassNotFoundException, IOException { 
    ByteArrayInputStream bis = new ByteArrayInputStream(b);

    ObjectInputStream in = new ObjectInputStream(bis); 
    Object object = in.readObject(); 
    in.close(); 

    return object; 
}

我仍然从这两个方法得到了同样的错误,所以我尝试将它与我用来通过BluetoothSocket的OutputStream发送我的ByteArray的方法合并,如下所示。

public void sendObject(Object obj) throws IOException{
    ByteArrayOutputStream bos = new ByteArrayOutputStream() ; 
    ObjectOutputStream out = new ObjectOutputStream( bos );
    out.writeObject(obj); 
    out.flush();
    out.close();

    byte[] buf = bos.toByteArray();
    sendByteArray(buf);
}
public void sendByteArray(byte[] buffer, int offset, int count) throws IOException{
    bluetoothSocket.getOutputStream().write(buffer, offset, count);
}

public Object getObject() throws IOException, ClassNotFoundException{
    byte[] buffer = new byte[10240];
    Object obj = null;
    if(bluetoothSocket.getInputStream().available() > 0){
        bluetoothSocket.getInputStream().read(buffer);

        ByteArrayInputStream b = new ByteArrayInputStream(buffer);
        ObjectInputStream o = new ObjectInputStream(b);
        obj = o.readObject();
    }
    return obj;
}

最后,我在接收设备上反序列化对象时遇到同样的错误,如下所示。

java.io.StreamCorruptedException
at java.io.ObjectInputStream.readStreamHeader (ObjectInputStream.java:2102)
at java.io.ObjectInputStream.<init>(ObjectInputStream.java:372)
and so on...

有人可以帮忙吗?我很绝望,这已经杀了我几个星期了,我需要这几天才能工作。 :S

1 个答案:

答案 0 :(得分:1)

根据thisthis帖子:

您应该在套接字的生命周期中使用单个ObjectOutputStreamObjectInputStream,并且不要在套接字上使用任何其他流。

其次,使用ObjectOutputStream.reset()清除以前的值。

让我知道这是否有效!