tasuku-neko / ChatServer

0 stars 1 forks source link

クライアントを閉じるメソッドを追加 #16

Closed apochi closed 9 years ago

apochi commented 9 years ago

ChatClientHandler.javaにクライアントを閉じるメソッドを追加する

void close(){ if(in != null){ try{ in.close(); } catch(IOException e){ } } if(out != null){ try{ out.close(); } catch(IOException e){ } } if(socket != null){ try{ socket.close(); } catch(IOException e){ } } }