简体   繁体   中英

executable jar file not running

I have created a runnable Jar file of quite large dimension (125,000 kb). When I run it the application inside this jar file is not shown but in the Task Manager the javaw.exe (which should be linked to this jar file) process is running. Does anyone know what the problem is and how it may be overcome?

在命令行中,使用java.exe -jar jarname.jar(不是javaw.exe)运行应用程序,因此您将看到错误和异常(如果有的话)被打印到系统输出或系统错误中。

您必须在主类示例中传递一些代码:如果要打开表单,请在主类中编写以下命令:-new().setVisible(true);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM