Next Generation Emulation banner

how much would it cost...

1290 Views 7 Replies 6 Participants Last post by  ChankastRules
Im thinking about paying someone to make a java chat room for me ( i know there's free one's out there but i need custom button in the java applet and other features) i would try to learn java but it would take way to long to learn it.. so my question is... how much would it cost to pay some one to build a custom chat from in java?
1 - 1 of 8 Posts
For a chat room, you'll actually have to write two parts: A chat server, and then chat clients that connect to the chat server.

This means learning to use network sockets, in addition to threads for the chat server. Not exactly a beginner's problem, but still very doable if you have the right documentation.

Now the question gets more basic: do you have a computer to run the chat server on, that anyone you want access to would be able to use?

Some things that might be helpful:
http://java.sun.com/docs/books/tutorial/ - For going over the Java language itself
http://java.sun.com/docs/books/tutorial/essential/threads/index.html - Threads, to handle lots of things at once
http://java.sun.com/docs/books/tutorial/networking/sockets/ - To do the networking
http://java.sun.com/docs/books/tutorial/applet/index.html - For the client applets

That should be everything you need.
See less See more
1 - 1 of 8 Posts
This is an older thread, you may not receive a response, and could be reviving an old thread. Please consider creating a new thread.
Top