我创建了一个“hello world”java程序,并使用lauch4j将可执行jar转换为.exe文件。当我试图在cmd中运行它,但没有打印出来。我也尝试在launch4j中运行它。日志表示:执行:C:\ Documents and Settings \ cnbq84 \ Desktop \ helloworld.exe。但仍然没有显示“你好世界”。
如何显示“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>
答案 0 :(得分:2)
您可能未处于控制台模式。
来自http://launch4j.sourceforge.net/docs.html
使用控制台模式包装jar launch4jc.exe并指定 配置文件。 launch4jc.exe config.xml中
答案 1 :(得分:0)
事实证明,我终于通过反复试验发现了这个问题......
当我添加这些行时: hello.HelloWorld hello.HelloWorld 一切正常。如果你没有明确指定它,似乎Launch4j找不到main()。
感谢。