How to run .jar file by double click on Windows 7 64-bit?(如何通过双击 Windows 7 64 位来运行 .jar 文件?)
问题描述
在命令行中运行 .jar 文件可以正常工作,但我无法通过双击我的 Windows 7 (64) 来运行任何 .jar 文件.双击后似乎没有任何反应.
我尝试了ftype
提示,没有成功:
ftype jarfile="C:Program FilesJavajre7injavaw.exe" -jar "%1" %*
我重新安装了JDK 7 64位,没有成功.
有什么想法吗?
解决方案右键->打开方式中列出了什么?是否有其他程序被列为默认程序?是否列出了 Java 运行时?如果列出了 Java 运行时,您可以使用它打开,并将其设置为运行的默认程序.
即,
<上一页>右键单击-> 属性-> 更改-> C:Program FilesJavajre7injavaw.exe
Running a .jar file in a command line works fine, but i am not able to run any .jar file by double clicking on my Windows 7 (64). It seems nothing happens after the double click.
I tried the ftype
hint, no success:
ftype jarfile="C:Program FilesJavajre7injavaw.exe" -jar "%1" %*
I reinstalled the JDK 7 64-bit, no success.
Any idea?
What is listed in right-click-> Open With ? Is some other program listed as the default program ? Is a Java Runtime listed ? If a Java Runtime is listed, you can open with it, and make it the default program to run with.
ie,
Right Click -> Properties -> Change -> C:Program FilesJavajre7injavaw.exe
这篇关于如何通过双击 Windows 7 64 位来运行 .jar 文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何通过双击 Windows 7 64 位来运行 .jar 文件?
基础教程推荐
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 降序排序:Java Map 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01