android 发送消息时指针异常

zbwhf8kr  于 2024-01-04  发布在  Android
关注(0)|答案(1)|浏览(157)

我构建了Android应用程序的语音识别命令,通过嵌入式蓝牙控制设备,我使用示例代码蓝牙聊天发送语音识别结果。但我得到了这样的错误。

  1. enter FATAL EXCEPTION: main
  2. java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=100, result=-1, data=Intent { (has extras) }} to activity {com.embox.rumahpintar/com.embox.rumahpintar.MainActivity}: java.lang.NullPointerException
  3. at android.app.ActivityThread.deliverResults(ActivityThread.java:3378)
  4. at android.app.ActivityThread.handleSendResult(ActivityThread.java:3421)
  5. at android.app.ActivityThread.access$1100(ActivityThread.java:148)
  6. at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1311)
  7. at android.os.Handler.dispatchMessage(Handler.java:99)
  8. at android.os.Looper.loop(Looper.java:137)
  9. at android.app.ActivityThread.main(ActivityThread.java:5162)
  10. at java.lang.reflect.Method.invokeNative(Native Method)
  11. at java.lang.reflect.Method.invoke(Method.java:525)
  12. at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:756)
  13. at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:572)
  14. at miui.dexspy.DexspyInstaller.main(DexspyInstaller.java:171)
  15. at dalvik.system.NativeStart.main(Native Method)
  16. Caused by: java.lang.NullPointerException
  17. at com.embox.rumahpintar.MainActivity.sendMessage(MainActivity.java:102)
  18. at com.embox.rumahpintar.MainActivity.onActivityResult(MainActivity.java:89)
  19. at android.app.Activity.dispatchActivityResult(Activity.java:5324)
  20. at android.app.ActivityThread.deliverResults(ActivityThread.java:3374)
  21. at android.app.ActivityThread.access$1100(ActivityThread.java:148)

字符串
这是MainActivity类:
public class MyClass {

  1. private static final String TAG = "voice";
  2. private final int REQ_CODE_SPEECH_INPUT = 100;
  3. private TextView speakInput;
  4. ArrayList<String> result;
  5. Button tapSpeak;
  6. String perintah = "hidupkan lampu kamar";
  7. BluetoothService mService = null;
  8. @Override
  9. protected void onCreate(Bundle savedInstanceState) {
  10. super.onCreate(savedInstanceState);
  11. setContentView(R.layout.activity_main);
  12. if (savedInstanceState == null) {
  13. FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
  14. BluetoothFragment fragment = new BluetoothFragment();
  15. transaction.replace(R.id.sample_content_fragment, fragment);
  16. transaction.commit();
  17. }
  18. Toast.makeText(this, "Smart Home @Created by Akmal Fadli", Toast.LENGTH_LONG).show();
  19. speakInput = (TextView) findViewById(R.id.speakInput);
  20. tapSpeak = (Button) findViewById(R.id.tapSpeak);
  21. tapSpeak.setOnClickListener(new View.OnClickListener() {
  22. @Override
  23. public void onClick(View v) {
  24. Log.i(TAG, "Speak recognition open....");
  25. promptSpeechInput();
  26. }
  27. });
  28. }
  29. public void promptSpeechInput() {
  30. Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
  31. intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
  32. RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
  33. intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, Locale.getDefault());
  34. intent.putExtra(RecognizerIntent.EXTRA_PROMPT,
  35. getString(R.string.speech_prompt));
  36. try {
  37. startActivityForResult(intent, REQ_CODE_SPEECH_INPUT);
  38. } catch (ActivityNotFoundException a) {
  39. Toast.makeText(getApplicationContext(),
  40. getString(R.string.speech_not_supported),
  41. Toast.LENGTH_SHORT).show();
  42. }
  43. }
  44. /**
  45. * Receiving speech input
  46. */
  47. @Override
  48. protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  49. super.onActivityResult(requestCode, resultCode, data);
  50. switch (requestCode) {
  51. case REQ_CODE_SPEECH_INPUT: {
  52. if (resultCode == RESULT_OK && null != data) {
  53. result = data
  54. .getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
  55. speakInput.setText(result.get(0));
  56. BluetoothFragment m = new BluetoothFragment();
  57. if (result.contains(perintah)) {
  58. Toast.makeText(this, "Perintah terkirim . . .", Toast.LENGTH_LONG).show();
  59. sendMessage(perintah);
  60. }
  61. break;
  62. }
  63. }
  64. }
  65. }
  66. private void sendMessage(String message) {
  67. // Check that we're actually connected before trying anything
  68. if (mService.getState() != BluetoothService.STATE_CONNECTED) {
  69. Toast.makeText(this, R.string.not_connected, Toast.LENGTH_SHORT).show();
  70. return;
  71. }
  72. // Check that there's actually something to send
  73. if (message.length() > 0) {
  74. // Get the message bytes and tell the BluetoothChatService to write
  75. byte[] send = message.getBytes();
  76. mService.write(send);
  77. }
  78. }


这就是SendMessage方法:

  1. public void sendMessage(String message) {
  2. // Check that we're actually connected before trying anything
  3. if (mService.getState() != BluetoothService.STATE_CONNECTED) {
  4. Toast.makeText(getActivity(), R.string.not_connected, Toast.LENGTH_SHORT).show();
  5. return;
  6. }
  7. // Check that there's actually something to send
  8. if (message.length() > 0) {
  9. // Get the message bytes and tell the BluetoothChatService to write
  10. byte[] send = message.getBytes();
  11. mService.write(send);
  12. }
  13. }


请给予我建议.
蓝牙服务类:

  1. public class BluetoothService {
  2. // Debugging
  3. private static final String TAG = "BluetoothChatService";
  4. // Name for the SDP record when creating server socket
  5. private static final String NAME_INSECURE = "BluetoothChatInsecure";
  6. // Unique UUID for this application
  7. private static final UUID MY_UUID_SECURE = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB");
  8. //UUID uuid = device.getUuids()[0].getUuid();
  9. //MY_UUID_SECURE = uuid;
  10. // Member fields
  11. private final BluetoothAdapter mAdapter;
  12. private final Handler mHandler;
  13. private AcceptThread mSecureAcceptThread;
  14. private AcceptThread mInsecureAcceptThread;
  15. private ConnectThread mConnectThread;
  16. private ConnectedThread mConnectedThread;
  17. private int mState;
  18. // Constants that indicate the current connection state
  19. public static final int STATE_NONE = 0; // we're doing nothing
  20. public static final int STATE_LISTEN = 1; // now listening for incoming connections
  21. public static final int STATE_CONNECTING = 2; // now initiating an outgoing connection
  22. public static final int STATE_CONNECTED = 3; // now connected to a remote device
  23. /**
  24. * Constructor. Prepares a new BluetoothChat session.
  25. *
  26. * @param context The UI Activity Context
  27. * @param handler A Handler to send messages back to the UI Activity
  28. */
  29. public BluetoothService(Context context, Handler handler) {
  30. mAdapter = BluetoothAdapter.getDefaultAdapter();
  31. mState = STATE_NONE;
  32. mHandler = handler;
  33. }
  34. /**
  35. * Set the current state of the chat connection
  36. *
  37. * @param state An integer defining the current connection state
  38. */
  39. private synchronized void setState(int state) {
  40. Log.d(TAG, "setState() " + mState + " -> " + state);
  41. mState = state;
  42. // Give the new state to the Handler so the UI Activity can update
  43. mHandler.obtainMessage(Constants.MESSAGE_STATE_CHANGE, state, -1).sendToTarget();
  44. }
  45. /**
  46. * Return the current connection state.
  47. */
  48. public synchronized int getState() {
  49. return mState;
  50. }
  51. /**
  52. * Start the chat service. Specifically start AcceptThread to begin a
  53. * session in listening (server) mode. Called by the Activity onResume()
  54. */
  55. public synchronized void start() {
  56. Log.d(TAG, "start");
  57. // Cancel any thread attempting to make a connection
  58. if (mConnectThread != null) {
  59. mConnectThread.cancel();
  60. mConnectThread = null;
  61. }
  62. // Cancel any thread currently running a connection
  63. if (mConnectedThread != null) {
  64. mConnectedThread.cancel();
  65. mConnectedThread = null;
  66. }
  67. setState(STATE_LISTEN);
  68. // Start the thread to listen on a BluetoothServerSocket
  69. if (mSecureAcceptThread == null) {
  70. mSecureAcceptThread = new AcceptThread(true);
  71. mSecureAcceptThread.start();
  72. }
  73. if (mInsecureAcceptThread == null) {
  74. mInsecureAcceptThread = new AcceptThread(false);
  75. mInsecureAcceptThread.start();
  76. }
  77. }
  78. /**
  79. * Start the ConnectThread to initiate a connection to a remote device.
  80. *
  81. * @param device The BluetoothDevice to connect
  82. *
  83. */
  84. public synchronized void connect(BluetoothDevice device) {
  85. Log.d(TAG, "connect to: " + device);
  86. mAdapter.cancelDiscovery();
  87. // Cancel any thread attempting to make a connection
  88. if (mState == STATE_CONNECTING) {
  89. if (mConnectThread != null) {
  90. mConnectThread.cancel();
  91. mConnectThread = null;
  92. }
  93. }
  94. // Cancel any thread currently running a connection
  95. if (mConnectedThread != null) {
  96. mConnectedThread.cancel();
  97. mConnectedThread = null;
  98. }
  99. // Start the thread to connect with the given device
  100. mConnectThread = new ConnectThread(device);
  101. mConnectThread.start();
  102. setState(STATE_CONNECTING);
  103. }
  104. /**
  105. * Start the ConnectedThread to begin managing a Bluetooth connection
  106. *
  107. * @param socket The BluetoothSocket on which the connection was made
  108. * @param device The BluetoothDevice that has been connected
  109. */
  110. public synchronized void connected(BluetoothSocket socket, BluetoothDevice
  111. device) {
  112. // Log.d(TAG, "connected, Socket Type:" + socketType);
  113. // Cancel the thread that completed the connection
  114. if (mConnectThread != null) {
  115. mConnectThread.cancel();
  116. mConnectThread = null;
  117. }
  118. // Cancel any thread currently running a connection
  119. if (mConnectedThread != null) {
  120. mConnectedThread.cancel();
  121. mConnectedThread = null;
  122. }
  123. // Cancel the accept thread because we only want to connect to one device
  124. if (mSecureAcceptThread != null) {
  125. mSecureAcceptThread.cancel();
  126. mSecureAcceptThread = null;
  127. }
  128. if (mInsecureAcceptThread != null) {
  129. mInsecureAcceptThread.cancel();
  130. mInsecureAcceptThread = null;
  131. }
  132. // Start the thread to manage the connection and perform transmissions
  133. mConnectedThread = new ConnectedThread(socket);
  134. mConnectedThread.start();
  135. String konek = "Device connected...";
  136. byte[] pesan = konek.getBytes();
  137. mConnectedThread.write(pesan);
  138. // Send the name of the connected device back to the UI Activity
  139. Message msg = mHandler.obtainMessage(Constants.MESSAGE_DEVICE_NAME);
  140. Bundle bundle = new Bundle();
  141. bundle.putString(Constants.DEVICE_NAME, device.getName());
  142. msg.setData(bundle);
  143. mHandler.sendMessage(msg);
  144. setState(STATE_CONNECTED);
  145. }
  146. /**
  147. * Stop all threads
  148. */
  149. public synchronized void stop() {
  150. Log.d(TAG, "stop");
  151. if (mConnectThread != null) {
  152. mConnectThread.cancel();
  153. mConnectThread = null;
  154. }
  155. if (mConnectedThread != null) {
  156. mConnectedThread.cancel();
  157. mConnectedThread = null;
  158. }
  159. if (mSecureAcceptThread != null) {
  160. mSecureAcceptThread.cancel();
  161. mSecureAcceptThread = null;
  162. }
  163. if (mInsecureAcceptThread != null) {
  164. mInsecureAcceptThread.cancel();
  165. mInsecureAcceptThread = null;
  166. }
  167. setState(STATE_NONE);
  168. }
  169. /**
  170. * Write to the ConnectedThread in an unsynchronized manner
  171. *
  172. * @param out The bytes to write
  173. * @see ConnectedThread#write(byte[]) (java.lang.String)
  174. */
  175. public void write(byte[] out) {
  176. // Create temporary object
  177. ConnectedThread r;
  178. // Synchronize a copy of the ConnectedThread
  179. synchronized (this) {
  180. if (mState != STATE_CONNECTED) return;
  181. r = mConnectedThread;
  182. }
  183. // Perform the write unsynchronized
  184. r.write(out);
  185. }
  186. /**
  187. * Indicate that the connection attempt failed and notify the UI Activity.
  188. */
  189. private void connectionFailed() {
  190. // Send a failure message back to the Activity
  191. Message msg = mHandler.obtainMessage(Constants.MESSAGE_TOAST);
  192. Bundle bundle = new Bundle();
  193. bundle.putString(Constants.TOAST, "Unable to connect device");
  194. msg.setData(bundle);
  195. mHandler.sendMessage(msg);
  196. // Start the service over to restart listening mode
  197. // BluetoothService.this.start();
  198. }
  199. /**
  200. * Indicate that the connection was lost and notify the UI Activity.
  201. */
  202. private void connectionLost() {
  203. // Send a failure message back to the Activity
  204. Message msg = mHandler.obtainMessage(Constants.MESSAGE_TOAST);
  205. Bundle bundle = new Bundle();
  206. bundle.putString(Constants.TOAST, "Device connection was lost");
  207. msg.setData(bundle);
  208. mHandler.sendMessage(msg);
  209. // Start the service over to restart listening mode
  210. //BluetoothService.this.start();
  211. }
  212. /**
  213. * This thread runs while listening for incoming connections. It behaves
  214. * like a server-side client. It runs until a connection is accepted
  215. * (or until cancelled).
  216. */
  217. private class AcceptThread extends Thread {
  218. // The local server socket
  219. private final BluetoothServerSocket mmServerSocket;
  220. private String mSocketType;
  221. public AcceptThread(boolean secure) {
  222. BluetoothServerSocket tmp = null;
  223. mSocketType = secure ? "Secure" : "Insecure";
  224. // Create a new listening server socket
  225. try {
  226. tmp = mAdapter.listenUsingInsecureRfcommWithServiceRecord(
  227. NAME_INSECURE, MY_UUID_SECURE);
  228. } catch (IOException e) {
  229. Log.e(TAG, "Socket Type: " + mSocketType + "listen() failed", e);
  230. }
  231. mmServerSocket = tmp;
  232. }
  233. public void run() {
  234. Log.d(TAG, "Socket Type: " + mSocketType +
  235. "BEGIN mAcceptThread" + this);
  236. setName("AcceptThread" + mSocketType);
  237. BluetoothSocket socket = null;
  238. // Listen to the server socket if we're not connected
  239. while (mState != STATE_CONNECTED) {
  240. try {
  241. // This is a blocking call and will only return on a
  242. // successful connection or an exception
  243. socket = mmServerSocket.accept();
  244. } catch (IOException e) {
  245. Log.e(TAG, "Socket Type: " + mSocketType + "accept() failed", e);
  246. break;
  247. }
  248. // If a connection was accepted
  249. if (socket != null) {
  250. synchronized (BluetoothService.this) {
  251. switch (mState) {
  252. case STATE_LISTEN:
  253. case STATE_CONNECTING:
  254. // Situation normal. Start the connected thread.
  255. connected(socket, socket.getRemoteDevice());
  256. break;
  257. case STATE_NONE:
  258. case STATE_CONNECTED:
  259. // Either not ready or already connected. Terminate new socket.
  260. try {
  261. socket.close();
  262. } catch (IOException e) {
  263. Log.e(TAG, "Could not close unwanted socket", e);
  264. }
  265. break;
  266. }
  267. }
  268. }
  269. }
  270. Log.i(TAG, "END mAcceptThread, socket Type: " + mSocketType);
  271. }
  272. public void cancel() {
  273. Log.d(TAG, "Socket Type" + mSocketType + "cancel " + this);
  274. try {
  275. mmServerSocket.close();
  276. } catch (IOException e) {
  277. Log.e(TAG, "Socket Type" + mSocketType + "close() of server failed", e);
  278. }
  279. }
  280. }
  281. /**
  282. * This thread runs while attempting to make an outgoing connection
  283. * with a device. It runs straight through; the connection either
  284. * succeeds or fails.
  285. */
  286. private class ConnectThread extends Thread {
  287. private final BluetoothSocket mmSocket;
  288. private final BluetoothDevice mmDevice;
  289. public ConnectThread(BluetoothDevice device) {
  290. mmDevice = device;
  291. BluetoothSocket tmp = null;
  292. // mSocketType = secure ? "Secure" : "Insecure";
  293. // Get a BluetoothSocket for a connection with the
  294. // given BluetoothDevice
  295. try {
  296. tmp = device.createRfcommSocketToServiceRecord(
  297. MY_UUID_SECURE);
  298. } catch (IOException e) {
  299. Log.e(TAG, "Socket Type: " + "create() failed", e);
  300. }
  301. mmSocket = tmp;
  302. }
  303. public void run() {
  304. // Always cancel discovery because it will slow down a connection
  305. mAdapter.cancelDiscovery();
  306. // Make a connection to the BluetoothSocket
  307. try {
  308. // This is a blocking call and will only return on a
  309. // successful connection or an exception
  310. mmSocket.connect();
  311. } catch (IOException e) {
  312. // Close the socket
  313. try {
  314. mmSocket.close();
  315. } catch (IOException e2) {
  316. Log.e(TAG, "unable to close() " +
  317. " socket during connection failure", e2);
  318. }
  319. connectionFailed();
  320. return;
  321. }
  322. // Reset the ConnectThread because we're done
  323. synchronized (BluetoothService.this) {
  324. mConnectThread = null;
  325. }
  326. // Start the connected thread
  327. connected(mmSocket, mmDevice);
  328. }
  329. public void cancel() {
  330. try {
  331. mmSocket.close();
  332. } catch (IOException e) {
  333. Log.e(TAG, "close() of connect " + " socket failed", e);
  334. }
  335. }
  336. }
  337. /**
  338. * This thread runs during a connection with a remote device.
  339. * It handles all incoming and outgoing transmissions.
  340. */
  341. //public class dulunya private
  342. private class ConnectedThread extends Thread {
  343. private final BluetoothSocket mmSocket;
  344. private final InputStream mmInStream;
  345. private final OutputStream mmOutStream;
  346. public ConnectedThread(BluetoothSocket socket) {
  347. // Log.d(TAG, "create ConnectedThread: " + socketType);
  348. mmSocket = socket;
  349. InputStream tmpIn = null;
  350. OutputStream tmpOut = null;
  351. // Get the BluetoothSocket input and output streams
  352. try {
  353. tmpIn = socket.getInputStream();
  354. tmpOut = socket.getOutputStream();
  355. } catch (IOException e) {
  356. Log.e(TAG, "temp sockets not created", e);
  357. }
  358. mmInStream = tmpIn;
  359. mmOutStream = tmpOut;
  360. }
  361. public void run() {
  362. Log.i(TAG, "BEGIN mConnectedThread");
  363. byte[] buffer = new byte[1024];
  364. int bytes;
  365. // Keep listening to the InputStream while connected
  366. while (true) {
  367. try {
  368. // Read from the InputStream
  369. bytes = mmInStream.read(buffer);
  370. // Send the obtained bytes to the UI Activity
  371. mHandler.obtainMessage(Constants.MESSAGE_READ, bytes, -1, buffer)
  372. .sendToTarget();
  373. } catch (IOException e) {
  374. Log.e(TAG, "disconnected", e);
  375. connectionLost();
  376. // Start the service over to restart listening mode
  377. BluetoothService.this.start();
  378. break;
  379. }
  380. }
  381. }
  382. /**
  383. * Write to the connected OutStream.
  384. *
  385. * @param buffer The bytes to write
  386. */
  387. public void write(byte[] buffer) {
  388. try {
  389. mmOutStream.write(buffer);
  390. // Share the sent message back to the UI Activity
  391. mHandler.obtainMessage(Constants.MESSAGE_WRITE, -1, -1, buffer)
  392. .sendToTarget();
  393. } catch (IOException e) {
  394. Log.e(TAG, "Exception during write", e);
  395. }
  396. }
  397. public void cancel() {
  398. try {
  399. mmSocket.close();
  400. } catch (IOException e) {
  401. Log.e(TAG, "close() of connect socket failed", e);
  402. }
  403. }
  404. }


解决了,我修改了我的代码到一个活动(MainActivity.class),所以我把蓝牙服务移动到MainActivity。

nzkunb0c

nzkunb0c1#

你从来没有初始化kirimPesan,所以它有null值。所以你有NullPointerException(异常告诉你什么是null)。
在发送消息之前,你需要用构造函数初始化kirimPesan。
或者,你可以把方法sendMessage放在你自己的类MainActivity中,那么你就根本不需要kirimPesan对象了。

相关问题