系统相关
首页 > 系统相关> > java – 在Windows 10上运行JAR文件

java – 在Windows 10上运行JAR文件

作者:互联网

参见英文答案 > How to run .jar file by double click on Windows 7 64-bit?                                    17个
我已经制作了一个Jar文件,但我不能通过双击来运行它.
使用java -jar name.jar或制作批处理文件可以正常工作.
我已经重新安装了jdk1.8.0_102,设置了JAVA_HOME变量,jre文件夹中的javaw.exe已经是运行它的默认程序.
那么如何通过双击来运行呢?

解决方法:

如何运行可执行的JAR文件?
如果您有一个名为Example.jar的jar文件,请遵循以下规则:

Open a notepad.exe.
Write : java -jar Example.jar.
Save it with the extension .bat.
Copy it to the directory which has the .jar file.
Double click it to run your .jar file.

标签:java,executable-jar,jar
来源: https://codeday.me/bug/20190627/1309642.html