I want to create a simple LAN conference-chat style messenger in Java but I have no clue where to start.
It must have the following features:
Just imagine it as being a messenger allowing all the employees in one building to chat with each other
I want to create a simple LAN conference-chat style messenger in Java but I have no clue where to start.
It must have the following features:
Sounds like you need a server app and a client app for each user. They will communicate over sockets. The server will open a ServerSocket
and the clients will create Socket
s and connect to the server when they want to chat.
The server needs to be able to accept connections from clients. The server will hold all the global details, such as what chat rooms exist, who is in each etc. The basic behaviour is that when there are several people (clients) in a chat room, one client will say something, this is sent to the server over the socket. The server has a list of all the clients (sockets) who are in the chat room, and it sends the message to each of them.
Finally, you need to be aware that the server will have to be multithreaded and will probably require a new thread for each client socket that connects.
Since you don't tell if there's going to be a server for that purpose or not, maybe, in addition to previous responses, it will be interesting for you the next link:
http://docs.oracle.com/javase/tutorial/networking/datagrams/broadcasting.html
The block option can be implemented saving a list of IPs and ignoring the messages coming from them.
You must look into swing tutorial as well so you can see how you can create the windows, textboxes, textareas, buttons, and so on, so you can create you're interface:
http://docs.oracle.com/javase/tutorial/uiswing/
You can save the user quite easy using a properties file for example, but maybe you must start learning java from the beginning if you're making this kind of questions.
Though your question is pretty vague you seem to have the basics (sockets and all that) in place. I suggest you start by reading the All About Sockets and All About Datagrams Java lessons on Oracle's site to get started. The main content from the second lesson you may want to digest is the part about broadcasting (for the purposes of automatic server detection).
Here's how i'd go about the implementation on a high level:
There obviously are numerous ways to make this kind of an application. I'm not saying that the way that i described is the best. It is, however, probably suitable to the use case you described, and its implementation is fairly simple.