launcher.java

来自「一个将JAVA打包成为。exe软件的工具软件 内代源码」· Java 代码 · 共 22 行

JAVA
22
字号
/* * Created on Jun 4, 2005 */package net.sf.launch4j;/** * This class allows launch4j to act as a launcher instead of a wrapper. * It's useful on Windows because an application cannot be a GUI and console one * at the same time. So there are two launchers that start launch4j.jar: launch4j.exe * for GUI mode and launch4jc.exe for console operation. * The Launcher class is packed into an executable jar that contains nothing else but * the manifest with Class-Path attribute defined as in the application jar. The jar * is wrapped with launch4j. *  * @author Copyright (C) 2005 Grzegorz Kowal */public class Launcher {	public static void main(String[] args) {		Main.main(args);	}}

⌨️ 快捷键说明

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