0

Windows 7 を実行しているサーバーに、ファイル サイズともう 1 つの整数、Android タブレットからのタブレットのシリアル番号を送信したい:

クライアント コードの何が問題なのですか?また、サーバーがさまざまなバイト ストリームのデータを受け入れるようにする方法を教えてください。

Android タブレットのクライアント コード

   try {

                byte[] bytes = new byte[(int) length];
                fis = new FileInputStream(file2);
                bis = new BufferedInputStream(fis);
                bos = new BufferedOutputStream(socket.getOutputStream());

                int count;

                // convert integer to byte
                ByteArrayOutputStream baos = new ByteArrayOutputStream();
                DataOutputStream dos = new DataOutputStream(baos);
                dos.writeInt(1992);
                byte[] preByte = baos.toByteArray();

                // the first byte that sends the tablet serial number and the size of the next file it is going to send
                bis.read(preByte);

                // the next sent is the file itself which is a database file
                while ((count = bis.read(bytes)) > 0) {
                    bos.write(bytes, 0, count);
                }

                fis.close();
                bis.close();
                fis = null;
                bis = null;
                socket.close();

2 つのファイルを受け取るサーバー コード

        fos = new FileOutputStream(file);
        bos = new BufferedOutputStream(fos);

        System.out.println("streams are setup from new thread\n");

        is = socket.getInputStream();
        bufferSize = socket.getReceiveBufferSize();

        buffer = new byte[bufferSize];

        while ((count = is.read(buffer)) > 0) {
            bos.write(buffer, 0, count);
        } // end while

        bos.flush();
        bos.close();
        is.close();
4

3 に答える 3