• 大小: 8.39MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-11-10
  • 语言: Java
  • 标签: 打包  .exe  launch4j  

资源简介

可将java程序+jre打包成exe可执行文件,点击即可运行程序

资源截图

代码片段和文件信息

/*
Launch4j (http://launch4j.sourceforge.net/)
Cross-platform Java application wrapper for creating Windows native executables.

Copyright (c) 2004 2015 Grzegorz Kowal
All rights reserved.

Redistribution and use in source and binary forms with or without modification
are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice
   this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its contributors
   may be used to endorse or promote products derived from this software without
   specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS“
AND ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING BUT NOT LIMITED TO
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT INDIRECT INCIDENTAL SPECIAL EXEMPLARY OR CONSEQUENTIAL DAMAGES
(INCLUDING BUT NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE DATA OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
AND ON ANY THEORY OF LIABILITY WHETHER IN CONTRACT STRICT LIABILITY
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

package net.sf.launch4j.example;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

/**
 * @author Copyright (C) 2005 Grzegorz Kowal
 */
public class ConsoleApp {
    public static void main(String[] args) {
StringBuffer sb = new StringBuffer(“Hello World!\n\nJava version: “);
sb.append(System.getProperty(“java.version“));
sb.append(“\nJava home: “);
sb.append(System.getProperty(“java.home“));
sb.append(“\nCurrent dir: “);
sb.append(System.getProperty(“user.dir“));
if (args.length > 0) {
sb.append(“\nArgs: “);
for (int i = 0; i < args.length; i++) {
sb.append(args[i]);
sb.append(‘ ‘);
}
}
sb.append(“\n\nEnter a line of text ‘quit‘ or Ctrl-C to stop.\n\n>“);
System.out.print(sb.toString());
try {
BufferedReader is = new BufferedReader(new InputStreamReader(System.in));
String line;
while ((line = is.readLine()) != null && !line.equalsIgnoreCase(“quit“)) {
System.out.print(“You wrote: “ + line + “\n\n>“);
}
is.close();
System.exit(123);
} catch (IOException e) {
System.err.print(e);
}
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-05-17 22:53  launch4j\
     目录           0  2018-05-17 22:53  launch4j\.settings\
     目录           0  2018-05-17 22:53  launch4j\bin\
     目录           0  2018-05-17 22:53  launch4j\demo\
     目录           0  2018-05-17 22:53  launch4j\demo\ConsoleApp\
     目录           0  2018-05-17 22:53  launch4j\demo\ConsoleApp\l4j\
     目录           0  2018-05-17 22:53  launch4j\demo\ConsoleApp\lib\
     目录           0  2018-05-17 22:53  launch4j\demo\ConsoleApp\src\
     目录           0  2018-05-17 22:53  launch4j\demo\ConsoleApp\src\net\
     目录           0  2018-05-17 22:53  launch4j\demo\ConsoleApp\src\net\sf\
     目录           0  2018-05-17 22:53  launch4j\demo\ConsoleApp\src\net\sf\launch4j\
     目录           0  2018-05-17 22:53  launch4j\demo\ConsoleApp\src\net\sf\launch4j\example\
     目录           0  2018-05-17 22:53  launch4j\demo\ExitCodeApp\
     目录           0  2018-05-17 22:53  launch4j\demo\ExitCodeApp\src\
     目录           0  2018-05-17 22:53  launch4j\demo\ExitCodeApp\src\net\
     目录           0  2018-05-17 22:53  launch4j\demo\ExitCodeApp\src\net\sf\
     目录           0  2018-05-17 22:53  launch4j\demo\ExitCodeApp\src\net\sf\launch4j\
     目录           0  2018-05-17 22:53  launch4j\demo\ExitCodeApp\src\net\sf\launch4j\example\
     目录           0  2018-05-17 22:53  launch4j\demo\SimpleApp\
     目录           0  2018-05-17 22:53  launch4j\demo\SimpleApp\l4j\
     目录           0  2018-05-17 22:53  launch4j\demo\SimpleApp\lib\
     目录           0  2018-05-17 22:53  launch4j\demo\SimpleApp\src\
     目录           0  2018-05-17 22:53  launch4j\demo\SimpleApp\src\net\
     目录           0  2018-05-17 22:53  launch4j\demo\SimpleApp\src\net\sf\
     目录           0  2018-05-17 22:53  launch4j\demo\SimpleApp\src\net\sf\launch4j\
     目录           0  2018-05-17 22:53  launch4j\demo\SimpleApp\src\net\sf\launch4j\example\
     目录           0  2018-05-17 22:53  launch4j\head\
     目录           0  2018-05-17 22:53  launch4j\head_jni_BETA\
     目录           0  2018-05-17 22:53  launch4j\head_src\
     目录           0  2018-05-17 22:53  launch4j\head_src\consolehead\
     目录           0  2018-05-17 22:53  launch4j\head_src\guihead\
............此处省略271个文件信息

评论

共有 条评论