0

私はこの奇妙な問題で立ち往生しています。私がしているのは、Bluetoothを介して2つのデバイスを通信することです。ßàæéのような特殊文字を送信すると、このような疑問符が表示されます????? 他のデバイスで。これが受信側のコードです

private class ConnectedThread extends Thread {

        private final Socket mmSocket;
        private final InputStream mmInStream;
        private final OutputStream mmOutStream;

        public ConnectedThread(Socket socket) {
            Log.d("ConnectionService", "create ConnectedThread");
            mmSocket = socket;
            InputStream tmpIn = null;
            OutputStream tmpOut = null;

            // Get the BluetoothSocket input and output streams
            try {
                tmpIn = socket.getInputStream();
                tmpOut = socket.getOutputStream();
            } catch (IOException e) {
                Log.d("ConnectionService", "temp sockets not created", e);
            }

            mmInStream = tmpIn;
            mmOutStream = tmpOut;
        }

        public void run() {
            Log.i("ConnectionService", "BEGIN mConnectedThread");

            byte[] buffer = new byte[4096];
            int bytes;

            // Keep listening to the InputStream while connected
            while (true) {
                try {
                    // Read from the InputStream
                    bytes = mmInStream.read(buffer);

                    if(bytes==0){
                        break;
                    }
                    String message = new String(buffer, 0, bytes);
                    Log.d("PC-DATA", message);
                    inputAnalyzer(message);

                } catch (IOException e) {
                    Log.d("ConnectionService", "disconnected", e);
                    connectionLost();
                    break;
                }
            }

            connectionLost();
        }

        public void write(byte[] buffer) {
            try {
                mmOutStream.write(buffer);
            } catch (IOException e) {
                Log.d("ConnectionService", "Exception during write", e);
            }
        }

        public void cancel() {
            try {

                mmSocket.close();
                connection = false;
            } catch (IOException e) {
                Log.d("ConnectionService", "close() of connect socket failed",
                        e);
            }
        }
    }

入力ストリームから読み取った後、この方法でバッファを文字列に変換します。

String message = new String(buffer, 0, bytes);

これは間違っているのでしょうか、それとも私が見逃している何か他のものでしょうか!何か助けはありますか?

4

1 に答える 1

1
String message = new String(buffer, 0, bytes);

正しい文字セットに言及せずに、バイトを文字表現に変換しないでください。代わりにこれを使用してください。

String(byte[] bytes, int offset, int length, String charsetName)

UTF-8は、ほとんどの特殊文字を表示できるはずです。ケースに合わない場合は、クライアントが受け取ると予想される文字をカバーする文字セットを使用してください。

于 2013-03-19T17:25:39.573 に答える