0

Android からラップトップの Bluetooth サーバーに接続しようとしていますが、アプリが強制終了します。Bluetooth のアクセス許可も含めました。誰かがコードをチェックして、私が間違っている可能性があることを教えてもらえますか?

   package com.android.example.blueoga;

   import java.io.IOException;
   import java.util.UUID;

   import android.os.Bundle;
   import android.app.Activity;
   import android.bluetooth.BluetoothAdapter;
   import android.bluetooth.BluetoothDevice;
   import android.bluetooth.BluetoothSocket;
   import android.content.Intent;
   import android.view.Menu;
   import android.widget.TextView;

   public class BlueGOA extends Activity {

   @Override
   protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    TextView view=(TextView)findViewById(R.id.textView1);
    BluetoothSocket socket;
    socket=null;
    String address="64:27:37:D0:1F:48";
    UUID MY_UUID=UUID.fromString("00001101-0000-1000-8000-00805F9B34FB");
    int REQUEST_ENABLE_BT=1;
    BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
    if (mBluetoothAdapter == null) {
        // Device does not support Bluetooth
        view.setText("Go Home Suckers");
    }
    else if(!mBluetoothAdapter.isEnabled()){
        Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
        startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);




    }
    BluetoothDevice device=mBluetoothAdapter.getRemoteDevice(address);
    try{
        socket=device.createRfcommSocketToServiceRecord(MY_UUID);
    }catch(IOException e){
        view.setText("problem in socket sucker");
    }
    try {
        socket.connect();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        view.setText("Problem in connecting sucker");
    }

    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.blue_go, menu);
    return true;
    }

   }
4

2 に答える 2

0

最初に目にするのは、ソケットの割り当てが例外をスローした場合でも、 socket.connect() を使用しようとしているということです。

于 2013-02-22T17:53:38.553 に答える