Click here to Skip to main content
15,885,366 members
Articles / Programming Languages / Java / Java SE

Java Chat With Customizable GUI

Rate me:
Please Sign up or sign in to vote.
4.75/5 (105 votes)
7 May 2007CPOL3 min read 1.2M   63.3K   134  
A complete Java (AWT) Chat Application with great customizable GUI Interface. It has features such as general chat and private chat, music when message arrives, sending images and more
/*************************************************************************/
/*************************************************************************/
/*************************************************************************/
/*****************Chat Server Constant Settings***************************/
/*************************************************************************/
/*************************************************************************/
/*************************************************************************/

 
package com.jeeva.chatserver;
public interface CommonSettings
{
	public int THREAD_SLEEP_TIME 	= 	1500;
	public int KICK_USER 			= 	0;
	public int REMOVE_USER 			= 	1;
	public int MAX_MESSAGE			=	30;
	public String ROOM_NAME			=	"General";		
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions