DataOutputStream
当我拔掉电缆时不会抛出IOException
错误,我的代码有什么问题?
这是我的代码:
private void sendMessage(String message) {
try {
mDataOutputStream.writeUTF(message);
mDataOutputStream.flush();
} catch(IOException ex) {
close();
}
}
一旦我重新插入电缆,数据仍会发送到服务器。