回城传送–》《JAVA筑基100例》
零、前言
? 今天是学习 JAVA语言 打卡的第93天,每天我会提供一篇文章供群成员阅读( 不需要订阅付钱 ),读完文章之后,按解题思路,自己再实现一遍。在小虚竹JAVA社区 中对应的 【打卡贴】打卡,今天的任务就算完成了。
? 因为大家都在一起学习同一篇文章,所以有什么问题都可以在群里问,群里的小伙伴可以迅速地帮到你,一个人可以走得很快,一群人可以走得很远,有一起学习交流的战友,是多么幸运的事情。
? 学完后,自己写篇学习报告的博客,可以发布到小虚竹JAVA社区 ,供学弟学妹们参考。
? 我的学习策略很简单,题海策略+ 费曼学习法。如果能把这100题都认认真真自己实现一遍,那意味着 JAVA语言 已经筑基成功了。后面的进阶学习,可以继续跟着我,一起走向架构师之路。
一、题目描述
题目实现:使用网络编程时,需要通过Socket传递对象。
二、解题思路
创建一个类:Student,实现序列化
? Student类包含两个属性及对应的get()和set()方法
创建一个服务器类:ServerSocketFrame,继承JFrame类
写一个getserver() 方法,实例化Socket对象,启用9527当服务的端口。
创建输入流对象,用来接收客户端信息。
再定义一个getClientInfo()方法,用于接收客户端发送的信息。
对文本框添加一个事件:实现向客户端发磅信息。
创建一个客户端类:ClientSocketFrame,继承JFrame类。
写一个connect() 方法,实例化Socket对象,连接本地服务的9527端口服务。
再定义一个getClientInfo()方法,用于接收服务端发送的信息。
技术重点:
在Java中使用Socket传递对象时,该对象必须是序列化的,在Java中实现Serializable接口的类,创建的对象就是序列化对象,可以通过Socket进行传递,从而实现了使用Socket传递对象的功能。 Serializable接口在javaio包中,该接口没有方法,只是用于标识对象是可序列化的。该接口的定义如下: public interface Serializable 使用Serializable接口,可以创建序列化类。
三、代码详解
Student
package com.xiaoxuzhu;
import java.io.Serializable;
public class Student implements Serializable {
private String id;
private String name;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
ServerSocketFrame
package com.xiaoxuzhu;
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.*;
import java.net.*;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
public class ServerSocketFrame extends JFrame {
private JTextField tf_name;
private JTextField tf_id;
private JTextArea ta_info;
private ObjectOutputStream out = null;
private ObjectInputStream in = null;
private ServerSocket server;
private Socket socket;
public void getserver() {
try {
server = new ServerSocket(9527);
ta_info.append("服务器套接字已经创建成功\n");
while (true) {
ta_info.append("等待客户机的连接......\n");
socket = server.accept();
ta_info.append("客户机连接成功\n");
out = new ObjectOutputStream(socket.getOutputStream());
in = new ObjectInputStream(socket.getInputStream());
getClientInfo();
}
} catch (Exception e) {
e.printStackTrace();
}
}
private void getClientInfo() {
try {
while (true) {
Student stud = (Student)in.readObject();
if (stud!=null)
ta_info.append("接收到客户机发送的 编号为:" + stud.getId() + " 名称为:" +stud.getName() + "\n");
}
} catch (Exception e) {
ta_info.append("客户端已退出。\n");
} finally {
try {
if (in != null) {
in.close();
}
if (socket != null) {
socket.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
public static void main(String[] args) {
ServerSocketFrame frame = new ServerSocketFrame();
frame.setVisible(true);
frame.getserver();
}
public ServerSocketFrame() {
super();
setTitle("服务器端程序");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 379, 260);
final JScrollPane scrollPane = new JScrollPane();
getContentPane().add(scrollPane, BorderLayout.CENTER);
ta_info = new JTextArea();
scrollPane.setViewportView(ta_info);
final JPanel panel = new JPanel();
getContentPane().add(panel, BorderLayout.NORTH);
final JLabel label = new JLabel();
label.setText("编号:");
panel.add(label);
tf_id = new JTextField();
tf_id.setPreferredSize(new Dimension(70,25));
panel.add(tf_id);
final JLabel label_1 = new JLabel();
label_1.setText("名称:");
panel.add(label_1);
tf_name = new JTextField();
tf_name.setPreferredSize(new Dimension(100,25));
panel.add(tf_name);
final JButton button = new JButton();
button.addActionListener(new ActionListener() {
public void actionPerformed(final ActionEvent e) {
Student stud = new Student();
stud.setId(tf_id.getText());
stud.setName(tf_name.getText());
try {
out.writeObject(stud);
} catch (IOException e1) {
e1.printStackTrace();
}
ta_info.append("服务器发送的 编号是:" + tf_id.getText() + " 名称是:"+tf_name.getText()+"\n");
tf_id.setText(null);
tf_name.setText(null);
}
});
button.setText("发 送");
panel.add(button);
}
}
ClientSocketFrame
package com.xiaoxuzhu;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.net.*;
import javax.swing.*;
public class ClientSocketFrame extends JFrame {
private JButton button;
private JTextField tf_name;
private JLabel label_1;
private JLabel label;
private JPanel panel;
private ObjectInputStream in = null;
private ObjectOutputStream out = null;
private Socket socket;
private JTextArea ta_info = new JTextArea();
private JTextField tf_id = new JTextField();
private Container cc;
public ClientSocketFrame() {
super();
setTitle("客户端程序");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 373, 257);
cc = this.getContentPane();
final JScrollPane scrollPane = new JScrollPane();
getContentPane().add(scrollPane, BorderLayout.CENTER);
scrollPane.setViewportView(ta_info);
getContentPane().add(getPanel(), BorderLayout.NORTH);
}
private void connect() {
ta_info.append("尝试连接......\n");
try {
socket = new Socket("127.0.0.1", 9527);
while (true){
out = new ObjectOutputStream(socket.getOutputStream());
in = new ObjectInputStream(socket.getInputStream());
ta_info.append("完成连接。\n");
getClientInfo();
}
} catch (Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
ClientSocketFrame clien = new ClientSocketFrame();
clien.setVisible(true);
clien.connect();
}
private void getClientInfo() {
try {
while (true) {
Student stud = (Student)in.readObject();
if (stud!=null)
ta_info.append("接收到服务器发送的 编号为:" + stud.getId() + " 名称为:" +stud.getName() + "\n");
}
} catch (Exception e) {
e.printStackTrace();
}
finally {
try {
if (in != null) {
in.close();
}
if (socket != null) {
socket.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
protected JPanel getPanel() {
if (panel == null) {
panel = new JPanel();
panel.add(getLabel());
tf_id.setPreferredSize(new Dimension(70, 25));
panel.add(tf_id);
panel.add(getLabel_1());
panel.add(getTf_name());
panel.add(getButton());
}
return panel;
}
protected JLabel getLabel() {
if (label == null) {
label = new JLabel();
label.setText("编号:");
}
return label;
}
protected JLabel getLabel_1() {
if (label_1 == null) {
label_1 = new JLabel();
label_1.setText("名称:");
}
return label_1;
}
protected JTextField getTf_name() {
if (tf_name == null) {
tf_name = new JTextField();
tf_name.setPreferredSize(new Dimension(100, 25));
}
return tf_name;
}
protected JButton getButton() {
if (button == null) {
button = new JButton();
button.addActionListener(new ActionListener() {
public void actionPerformed(final ActionEvent e) {
Student stud = new Student();
stud.setId(tf_id.getText());
stud.setName(tf_name.getText());
try {
out.writeObject(stud);
} catch (IOException e1) {
e1.printStackTrace();
}
ta_info.append("客户端发送的 编号是:" + tf_id.getText() + " 名称是:"+tf_name.getText()+"\n");
tf_id.setText(null);
tf_name.setText(null);
}
});
button.setText("发 送");
}
return button;
}
}
服务器启动
客户端连接
服务器发送学生信息
客户端接收学生信息
客户端发送学生信息
服务端接收学生信息
四、推荐专栏
《JAVA从零到壹》
《JAVA筑基100例》
五、示例源码下载
关注下面的公众号,回复筑基+题目号
筑基93
|