Closed apochi closed 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){ } } }
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){ } } }