main.java

来自「基于jxta的局域网P2P文件共享,可以实现局域网中的文件p2p共享,实现文件快」· Java 代码 · 共 50 行

JAVA
50
字号
package connex;


import javax.swing.UIManager;


/**
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2005</p>
 *
 * <p>Company: </p>
 *
 * @author not attributable
 * @version 1.0
 */
public class Main {
    boolean packFrame = false;

    /**
     * Construct and show the application.
     */
    public Main() {
      ApplicationLauncher.getInstance().startApplication() ;
    }

    /**
     * Application entry point.
     *
     * @param args String[]
     */
    public static void main(String[] args) {

       try {
            UIManager.setLookAndFeel(UIManager.
                                     getSystemLookAndFeelClassName());
        } catch (Exception exception) {
            exception.printStackTrace();
        }

        new Main();

    }



}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?