-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServer.java
More file actions
132 lines (104 loc) · 2.97 KB
/
Server.java
File metadata and controls
132 lines (104 loc) · 2.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package ChatApplication;
import java.awt.Color;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.JTextPane;
public class Server extends JFrame {
private static final long serialVersionUID = 1L;
private JTextPane txtContent;
private JTextField txtMsg;
private final Action onSendMessage = new SwingAction();
private SocketService socketService;
/**
* Create the frame.
*/
public Server() {
setTitle("Server");
setDefaultCloseOperation(EXIT_ON_CLOSE);
setBounds(900, 100, 450, 500);
JPanel contentPane = new JPanel();
contentPane.setBackground(new Color(176, 224, 230));
contentPane.setLayout(null);
setContentPane(contentPane);
txtContent = new JTextPane();
txtContent.setBounds(21, 42, 389, 356);
txtContent.setEditable(false);
txtContent.setBackground(new Color(248, 248, 255));
contentPane.add(txtContent);
txtMsg = new JTextField();
txtMsg.setBounds(21, 409, 298,32);
contentPane.add(txtMsg);
JLabel txtServerStatus = new JLabel("Server status:");
txtServerStatus.setBounds(21, 11, 242, 20);
txtServerStatus.setFont(new Font("Tahoma", Font.PLAIN, 14));
contentPane.add(txtServerStatus);
JButton btnSend = new JButton("Send");
btnSend.setBounds(335, 409, 75, 32);
btnSend.setFont(new Font("Tahoma", Font.BOLD, 13));
btnSend.setBackground(new Color(255,255,255));
btnSend.setAction(onSendMessage);
contentPane.add(btnSend);
try {
ServerSocket serverSocket = new ServerSocket(8080);
Thread th = new Thread() {
@Override
public void run() {
try {
txtServerStatus.setText("Server listening on port 8080");
Socket socket = serverSocket.accept();
//Socket service
socketService = new SocketService(socket, txtContent);
} catch (IOException e) {
e.printStackTrace();
}
}
};
th.start();
} catch (Exception e) {
e.printStackTrace();
}
}
private class SwingAction extends AbstractAction{
private static final long serialVersionUID = 1L;
public SwingAction() {
putValue(NAME, "Send");
putValue(SHORT_DESCRIPTION, "Click to send");
}
@Override
public void actionPerformed(ActionEvent e) {
//sendMessage
if (txtMsg.getText().trim().length() == 0) {
return;
}
String msg = "[Server]: " + txtMsg.getText().trim();
txtMsg.setText("");
socketService.send(msg);
}
}
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater( new Runnable() {
public void run() {
try {
Server frame = new Server();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
} );
}
}