2012-08-22 196 views
1

如何在Java中掛起線程時掛起? 我不能使用中斷(),因爲我無法檢查掛起的線程中的中斷標誌。 另外stop()已被棄用,因爲它不安全。如何在java中掛起線程時掛起?

在此先感謝。

更新: 線程掛起Socket.connect():

Method m = device.getClass().getMethod("createInsecureRfcommSocket", 
      new Class[] { int.class }); 
final BluetoothSocket socket = (BluetoothSocket) m.invoke(device, port); 
socket.connect(); 
+1

定義你的意思是'線程被絞死' – Blundell

+0

@Blundell我已經更新了這個問題 – Taras

+0

@Division_Bell如果你在android上,[javadoc](http://developer.android.com/reference/android/bluetooth /BluetoothSocket.html#connect%28%29)指出:*「close()可用於中止來自其他線程的此調用。」* – assylias

回答

3

關閉線程下乾淨的唯一方法是讓優雅地自行停止。

如果某個線程在像Socket讀取或寫入這樣的資源上被阻塞,您可以嘗試關閉它並引發IOException。如何解鎖一個線程完全取決於它爲什麼被阻塞。

如果您強制停止線程,則放棄了將優雅停止的想法,在這種情況下,Thread.stop()System.exit()是您的唯一選項。

+0

嗨,謝謝你的回覆。其實,問題是,Socket.close()也掛起 – Taras

+0

你可以先嚐試'Socket.shutdownOutput()'嗎?這將停止它嘗試發送任何未刷新的數據。 'Socket.close()'不應該被阻塞,除非你的消費者太慢了。 –

+0

謝謝你的回答 – Taras