3

我正在制作一个战舰游戏,我想发送一个名为 Ships 的类的数组(其中包含船名、大小、旋转与否等内容以及坐标的数组列表)。我用谷歌搜索了这个并查看了堆栈溢出,我基本上需要序列化数组,但这就是我卡住的地方。我需要使用 ObjectOutputStream,但是如何将其合并到下面的代码中(取自 android 开发站点)。注意我已经使船类实现可序列化。提前致谢

public class ConnectedThread extends Thread {
        private final BluetoothSocket mmSocket;
        private final InputStream mmInStream;
        private final OutputStream mmOutStream;

        public ConnectedThread(BluetoothSocket socket) {
            Log.d(TAG, "connectedthread started");
            // mHandler.obtainMessage(TEST).sendToTarget();
            mmSocket = socket;
            InputStream tmpIn = null;
            OutputStream tmpOut = null;

            // Get the input and output streams, using temp objects because
            // member streams are final
            try {

                tmpIn = socket.getInputStream();
                tmpOut = socket.getOutputStream();

            } catch (IOException e) {
                Log.e(TAG, "temp sockets not created");
            }

            mmInStream = tmpIn;
            mmOutStream = tmpOut;

        }

        public void run() {
            Log.i(TAG, "Begin mConnectedThread");
            byte[] buffer = new byte[1024]; // buffer store for the stream
            int bytes; // bytes returned from read()

            // Keep listening to the InputStream until an exception occurs
            while (true) {
                try {
                    // Read from the InputStream
                    bytes = mmInStream.read(buffer);
                    // Send the obtained bytes to the UI activity
                    Log.i(TAG, "reaaaad msg");
                    mHandler.obtainMessage(SetUpGame.MESSAGE_READ2, bytes, -1, buffer).sendToTarget();
                } catch (IOException e) {
                    Log.e(TAG, "disconnectd");
                    break;
                }
            }
        }

        /*
         * Call this from the main activity to send data to the remote
         * device
         */
        public void write(byte[] buffer) {

            try {

                mmOutStream.write(buffer);
                Log.i(TAG, "writeeee msg");
                mHandler.obtainMessage(SetUpGame.MESSAGE_WRITE, -1,-1, buffer).sendToTarget();
            } catch (IOException e) {
                Log.e(TAG, "Exception during write");
            }
        }

        /* Call this from the main activity to shutdown the connection */
        public void cancel() {
            try {
                mmSocket.close();
            } catch (IOException e) {
                Log.e(TAG, "close of connect socket failed");
            }
        }

    }

和我的处理程序:

        final Handler mHandler = new Handler() {
        @Override
        public void handleMessage(android.os.Message msg) {

            switch (msg.what) {
            case MESSAGE_READ2:

                byte[] readBuf = (byte[]) msg.obj;
                String readMessage = new String(readBuf, 0, msg.arg1);
                break;

            case MESSAGE_WRITE:
                byte[] writeBuf = (byte[]) msg.obj;
                String writeMessage = new String(writeBuf);
                //Toast.makeText(getApplicationContext(),"Me:" + writeMessage, Toast.LENGTH_SHORT).show();
                break;
4

1 回答 1

6

在上面的代码中,您从连接的套接字获取输入/输出流。

现在您可以使用这些流向/从套接字流式传输数据。

具体如何执行取决于您要流式传输的数据类型。在这种情况下,您有一个可序列化的对象要发送,因此您将把您的流包装在一个过滤器中,该过滤器调整流以与对象一起使用:ObjectOutputStream/ObjectInputStream...

ObjectOutputStream oos = new ObjectOutputStream( mmOutStream );
for (Ship ship: ships)
  oos.writeObject( ship );

此代码遍历 Ships 数组,将每艘船写入流(因此也写入蓝牙套接字)。

接收方是相同的,还有一个额外的复杂性:您不一定知道何时停止或阅读什么。有多种方案来处理这个问题,并且有一些专门处理这个问题的问题。Android 开发者指南的蓝牙页面有示例代码:http: //developer.android.com/guide/topics/connectivity/bluetooth.html

于 2013-03-20T01:38:24.447 回答