私はこの奇妙な問題で立ち往生しています。私がしているのは、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);
これは間違っているのでしょうか、それとも私が見逃している何か他のものでしょうか!何か助けはありますか?