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

📄 launcher.java

📁 一个将JAVA打包成为。exe软件的工具软件 内代源码
💻 JAVA
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -