2019-08-25
2019-08-25 本文已影响0人
勿陌
服务器启动程序
* 创建时间:2019年6月18日
*/
package server;
import java.awt.EventQueue;
import javax.swing.JFrame;
/**
* Title:ServerApp
* Description::
*
* @author 谭超
* @date 2019年6月18日
*/
public class ServerApp {
private JFrame frame;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
ServerApp window = new ServerApp();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
Server server = new Server();
server.start();
}
/**
* Create the application.
*/
public ServerApp() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setTitle("图书管理系统服务器");
frame.setBounds(100, 100, 200, 200);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}