一个基于TCP的聊天程序
2008-02-23 09:43:41来源:互联网 阅读 ()
只能用于本地局域网中,怎么在互联网上用还有待研究:)!
这个程序只能在本机上用,要在局域网上用还要改一下!
代码如下:
服务器:
import Java.io.*;
import java.awt.*;
import java.awt.event.*;
import java.net.*;
public class ChatS extends Frame
{
TextField tf=new TextField(20);
TextArea ta=new TextArea();
ServerSocket server;
Socket client;
InputStream in;
BufferedReader br;
OutputStream out;
BufferedWriter bw;
public ChatS()
{
super("Server");
add("North",tf);
add("Center",ta);
setSize(250,250);
show();
try
{
server=new ServerSocket(5001);
client=server.accept();
ta.append("Client host:" client.getInetAddress().getHostName() "\n\n");
in=client.getInputStream();
out=client.getOutputStream();
}
catch(IOException ioe){}
while(true)
{
try
{
byte[] buf=new byte[200];
in.read(buf);
String str=new String(buf);
ta.append("Client say:" str);
ta.append("\n");
}
catch(IOException e){}
}
}
public boolean action(Event e,Object o)
{
try
{
String str=tf.getText();
byte[] buf=str.getBytes();
tf.setText(null);
out.write(buf);
ta.append("I say:" str);
ta.append("\n");
}
catch(IOException ioe){}
return true;
}
public static void main(String args[])
{
new ChatS();
}
}
客户端:
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import java.net.*;
public class ChatC extends Frame
{
TextField tf=new TextField(20);
TextArea ta=new TextArea();
Socket client;
InputStream in;
BufferedReader br;
OutputStream out;
BufferedWriter bw;
public ChatC()
{
super("Client");
add("North",tf);
add("Center",ta);
setSize(250,250);
show();
try
{
client=new Socket("127.0.0.1",5001);
ta.append("Connect to:" client.getInetAddress().getHostName() "\n\n");
in=client.getInputStream();
br=new BufferedReader(new InputStreamReader(in));
out=client.getOutputStream();
bw=new BufferedWriter(new OutputStreamWriter(out));
}
catch(IOException ioe){}
while(true)
{
try
{
byte[] buf=new byte[200];
in.read(buf);
String str=new String(buf);
ta.append("Server say:" str);
ta.append("\n");
}
catch(IOException e){}
}
}
public boolean action(Event e,Object o)
{
try
{
String str=tf.getText();
byte[] buf=str.getBytes();
tf.setText(null);
out.write(buf);
ta.append("I say:" str);
ta.append("\n");
}
catch(IOException ioe){}
return true;
}
public static void main(String args[])
{
new ChatC();
}
}
上一篇: tomcat5.0 mysql配置JDBCRealm,DBCP,ssl,及中文乱码解决详解
下一篇: 20分钟熟悉猛虎脾气-JDK1.5新特性介绍
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash