Проблема с отправкой файла по Bluetooth для Android

Я пишу небольшую программу для отправки файлов между Android и ПК через bluetooth. Я уже прочтите пример чата bluetooth на сайте google android.

В настоящее время моя версия отлично работает с отправкой текстового сообщения через bluetooth, но когда я отправляю файлы размером> = 20 КБ, она перестает работать и генерирует исключение EOFException, как показано ниже:

java.io.EOFException at java.io.ObjectInputStream$BlockDataInputStream.readFully(ObjectInputStream.java:2716)
    at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1665)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1340)
    at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1963)
    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1887)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1770)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1346)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:368)
    at com.test.pcserver.BluetoothServerListener.run(BluetoothServerListener.java:74)
    at java.lang.Thread.run(Thread.java:636)

В настоящее время моя java-программа на ПК с использованием bluecove-2.1.0

Вот мои основные коды:

В Android:

// Get the BLuetoothDevice object
if (BluetoothAdapter.checkBluetoothAddress(address)) {
    device = mBtAdapter.getRemoteDevice(address);

        // Get a BluetoothSocket for a connection with the
    // given BluetoothDevice
    socket = device .createRfcommSocketToServiceRecord(ProgramConstants.BLUETOOTH_UUID);
    socket.connect();

        out = new ObjectOutputStream(socket.getOutputStream());

    // Send it to PC
    out.writeObject(contentObject);
    out.flush();        
}

Я прочитал на моем ПК:

ПК Версия, сервер

StreamConnectionNotifier streamConnNotifier = null;

// Create the service url
String connectionString = "btspp://localhost:" + ProgramConstants.BLUETOOTH_UUID.toString()
                    + ";name=myappname";
// open server url
streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString);

while (true) {
  // Wait for client connection
  StreamConnection connection = streamConnNotifier.acceptAndOpen();
  ObjectInputStream in = new ObjectInputStream(connection.openInputStream());
  RemoteDevice dev = RemoteDevice.getRemoteDevice(connection);

  // read string from spp client
  DataInController data = new DataInController(model);
  data.processDataIn(in.readObject(), dev.getBluetoothAddress());   
}
6
задан vodkhang 11 May 2011 в 15:01
поделиться