2

我创建了一个“hello world”java 程序并使用 lauch4j 将可执行 jar 转换为 .exe 文件。当我尝试在 cmd 中运行它时,但没有打印出来。我也尝试在 launch4j 中运行它。日志显示:正在执行:C:\Documents and Settings\cnbq84\Desktop\helloworld.exe。但仍然没有显示“hello world”。

如何显示“Hello World”消息?

谢谢

这是我的配置文件:

<launch4jConfig>
  <dontWrapJar>false</dontWrapJar>
  <headerType>gui|console</headerType>
  <jar>C:\Documents and Settings\cnbq84\Desktop\helloworld.jar</jar>
  <outfile>C:\Documents and Settings\cnbq84\Desktop\helloworld.exe</outfile>
  <errTitle></errTitle>
  <cmdLine></cmdLine>
  <chdir></chdir>
  <priority>normal</priority>
  <downloadUrl>http://java.com/download</downloadUrl>
  <supportUrl></supportUrl>
  <customProcName>false</customProcName>
  <stayAlive>false</stayAlive>
  <manifest></manifest>
  <icon></icon>
  <jre>
    <path>PATH</path>
    <minVersion>1.4.0</minVersion>
    <maxVersion></maxVersion>
    <jdkPreference>preferJre</jdkPreference>
  </jre>
</launch4jConfig>
4

2 回答 2

2

您可能未处于控制台模式。

来自http://launch4j.sourceforge.net/docs.html

要以控制台模式包装 jar,请使用 launch4jc.exe 并指定配置文件。启动4jc.exe config.xml

于 2009-06-29T21:03:48.353 回答
0

事实证明,我终于通过反复试验发现了这个问题......

当我添加这些行时: hello.HelloWorld hello.HelloWorld 一切正常。如果您没有明确指定它,Launch4j 似乎找不到 main()。

谢谢。

于 2009-06-30T14:00:40.800 回答