java udp 聊天室_Java实现基于UDP的聊天室软件

import java.awt.*;

import java.awt.event.*;

import java.io.*;

import java.net.*;

public class ChatClient extends Frame {

Socket socket = null;

DataOutputStream dos = null;

DataInputStream dis = null;

private boolean bConnected = false;

private String name;

//private boolean named = false;

TextField tfTxt = new TextField();

TextArea taContent = new TextArea();

Thread tRecv = new Thread(new RecvThread());

public static void main(String[] args) {

new ChatClient().launchFrame();

}

public void launchFrame() {

setLocation(400, 300);

this.setSize(300, 300);

add(tfTxt, BorderLayout.SOUTH);

add(taContent, BorderLayout.NORTH);

pack();

this.addWindowListener(new WindowAdapter() {

public void windowClosing(WindowEvent e) {

disconnect();

System.exit(0);

}

});

setVisible(true);

connect();

tfTxt.addActionListener(new TFListener());

//new Thread(new RecvThread()).start();        tRecv.start();

}

public void connect() {

try {

socket = new Socket("127.0.0.1", 8888);

dos = new DataOutputStream(socket.getOutputStream());

dis = new DataInputStream(socket.getInputStream());

System.out.println("connected!");

taContent.setText("你叫什么名字?\n");

bConnected  = true;

} catch (UnknownHostException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

}

public void disconnect() {

try {

dos.close();

dis.close();

socket.close();

} catch (IOException e) {

e.printStackTrace();

}

/*try {

bConnected = false;

tRecv.join();

} catch (InterruptedException e) {

e.printStackTrace();

} finally {

try {

dos.close();

dis.close();

socket.close();

} catch (IOException e) {

e.printStackTrace();

}

}*/

}

private class TFListener implements ActionListener {

private boolean named = false;

public void actionPerformed(ActionEvent e) {

String str = tfTxt.getText().trim();

//taContent.setText(str);            tfTxt.setText("");

if(named == false) {

named = true;

name = str;

try {

dos.writeUTF(name+" is coming!");

dos.flush();

} catch (IOException e1) {

e1.printStackTrace();

}

return;

}

try {

//dos = new DataOutputStream(socket.getOutputStream());                dos.writeUTF(name + ":" + str);

dos.flush();                    //dos.close();            } catch (IOException e1) {

e1.printStackTrace();

}

}

}

private class RecvThread implements Runnable {

private String name;

public void run() {

/*while(bConnected) {

try {

String str = dis.readUTF();

//System.out.println(str);

taContent.setText(taContent.getText()+str+'\n');

} catch (SocketException e) {

System.out.println("退出了,bye!");

} catch (EOFException e) {

System.out.println("退出了,bye - bye!");

} catch (IOException e) {

e.printStackTrace();

}

}*/

try {

while(bConnected) {

String str = dis.readUTF();

//System.out.println(str);                    taContent.setText(taContent.getText()+str+'\n');

}

} catch (SocketException e) {

System.out.println("退出了,bye!");

} catch (EOFException e) {

System.out.println("退出了,bye - bye!");

} catch (IOException e) {

e.printStackTrace();

}

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值