hkjc2app.java
来自「java写的读取香港马术比赛数据,分析并导入到EXCEL的源码,可供研究用。」· Java 代码 · 共 45 行
JAVA
45 行
/* * HKJC2App.java */package hkjc2;import org.jdesktop.application.Application;import org.jdesktop.application.SingleFrameApplication;/** * The main class of the application. */public class HKJC2App extends SingleFrameApplication { /** * At startup create and show the main frame of the application. */ @Override protected void startup() { show(new HKJC2View(this)); } /** * This method is to initialize the specified window by injecting resources. * Windows shown in our application come fully initialized from the GUI * builder, so this additional configuration is not needed. */ @Override protected void configureWindow(java.awt.Window root) { } /** * A convenient static getter for the application instance. * @return the instance of HKJC2App */ public static HKJC2App getApplication() { return Application.getInstance(HKJC2App.class); } /** * Main method launching the application. */ public static void main(String[] args) { launch(HKJC2App.class, args); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?