⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 start.java

📁 java检测程序系统java检测程序系统
💻 JAVA
字号:
package shyhao.windows.explorer.start;

import shyhao.splash.ChartSplash;
import shyhao.splash.Splash;

public class Start {

	public Start() {

	}

	public static void main(String args[]) {
		try {

			Splash splash = new ChartSplash();
			splash.startSplash();
	
			CpuAndMemoryDynamicChart frame = new CpuAndMemoryDynamicChart();
			frame.setLocationRelativeTo(null);
			Thread.sleep(1000);
			frame.setVisible(true);
			splash.stopSplash();

		} catch (Exception e) {
			e.printStackTrace();
		}
	}

}

⌨️ 快捷键说明

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