• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Java Applet Chat

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If anyone can, please help me by writing a java applet code for a web based chat system! It should also be able to write the communication occurred among the group into a Log (Notepad)�

Because of the limited time frame in my project completion, I�m unable to complete my project due to this reason...

It will be a great Blessing, if you guys could Help me on this situation!
Thanking you all!

Best regards,
Aslam Cader
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to JavaRanch.

Well, you'd need to parts: a server that accepts connections on a particular port, logs what it receives to a file, and sends it on to one or several of the connected clients; and a client that connects to the server, has fields for user input and text output, send the input to the server, and receives output from the server to display.

You can start by examining one of the many sample codes for Java client/server port communication, e.g. this one.
 
reply
    Bookmark Topic Watch Topic
  • New Topic