挂起时如何停止Java中的线程?我不能使用中断(),因为我无法检查挂起线程中的中断标志。stop() 也被弃用,因为它不安全。
提前致谢。
更新:线程挂在 Socket.connect() 上:
Method m = device.getClass().getMethod("createInsecureRfcommSocket",
new Class[] { int.class });
final BluetoothSocket socket = (BluetoothSocket) m.invoke(device, port);
socket.connect();