电脑桌面
添加小米粒文库到电脑桌面
安装后可以在桌面快捷访问

JAVA编写服务器和客户端

JAVA编写服务器和客户端_第1页
1/5
JAVA编写服务器和客户端_第2页
2/5
JAVA编写服务器和客户端_第3页
3/5
1、服务器程序代码如下:import java.io.*;import java.net.*;import java.awt.*;import java.awt.event.*;public class aaa extends Frame implements ActionListener { Label label = new Label("交谈内容"); Panel panel = new Panel(); TextField tf = new TextField(10); TextArea ta = new TextArea(); ServerSocket server; Socket client; InputStream in; OutputStream out; public aaa() { super("服务器"); setSize(80, 80); panel.add(label); panel.add(tf); tf.addActionListener(this); add("West", panel); add("Center", ta); addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) { System.exit(0); } }); show () ; try { server = new ServerSocket(4000); client = server.accept(); ta.append("客户机端:" + client.getInetAddress().getHostName() + "\n\n"); in =client.getInputStream(); out= client.getOutputStream(); } catch (IOException ioe) { } while (true) { try { byte[] buf = new byte[256]; in.read(buf); String str = new String(buf); ta.append("服务器端:" + str + "\n\n"); } catch (IOException e) { } } } public void actionPerformed(ActionEvent e) { try { String str = tf.getText(); byte[] buf = str.getBytes(); tf.setText(null); out.write(buf); ta.append(":" + str + "\n"); } catch (IOException ioe) { } } public static void main(String[] args) { new aaa(); }}运行结果:2、客户端程序代码如下:import java.io.*;import java.net.*;import java.awt.*;import java.awt.event.*;public class client extends Frame implements ActionListener {Label label = new Label("交谈内容"); Panel panel = new Panel(); TextField tf = new TextField(10); TextArea ta = new TextArea(); Socket client; InputStream in; OutputStream out; public client() { super("客户端"); setSize(250, 250); panel.add(label); panel.add(tf); tf.addActionListener(this); add("West", panel); add("Center", ta); addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) { System.exit(0); } }); show(); try { client = new Socket(InetAddress.getLocalHost(), 4000); ta.append("您服务器是:" + client.getInetAddress().getHostName() + "\n\n"); in = client.getInputStream(); out = client.getOutputStream(); } catch (IOException ioe) { } while (true) { try { byte[] buf = new byte[256]; in.read(buf); String str = new String(buf); ta.append("服务器端:" + str + "\n"); } catch (IOException e) { } } } public void actionPerformed(ActionEvent e) { try { String str = tf.getText(); byte[] buf = str.getBytes(); tf.setText(null); out.write(buf); ta.append("客户端:" + str + "\n"); } catch (IOException iOE) { } } public static void main(String args[]) { new client(); }}运行结果:最后输入信息,如:你好吗?

1、当您付费下载文档后,您只拥有了使用权限,并不意味着购买了版权,文档只能用于自身使用,不得用于其他商业用途(如 [转卖]进行直接盈利或[编辑后售卖]进行间接盈利)。
2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。
3、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。

碎片内容

JAVA编写服务器和客户端

确认删除?
VIP
微信客服
  • 扫码咨询
会员Q群
  • 会员专属群点击这里加入QQ群
客服邮箱
回到顶部