java client and server chat system [closed]
i have little problem when i creating client and server chat system client doesn't read characters i am using bufferedinput stream
My guess is that you are using a BufferedOutputStream or BufferedWriter and you haven't flush()ed the stream so the data is just sitting in the buffer on the sending side.
精彩评论