美文网首页
2019-08-25

2019-08-25

作者: 勿陌 | 来源:发表于2019-08-25 20:52 被阅读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);
        }
    
    }

    相关文章

      网友评论

          本文标题:2019-08-25

          本文链接:https://www.haomeiwen.com/subject/jfvkectx.html