问题:打不开jar包
解决办法:
进入注册表(regedit.exe),修改 \HKEY_CLASSES_ROOT\Aplications\javaw.exe\shell\open\command下的默认值,在键值javaw.exe" "%1"中间添加-jar 修改为 javaw.exe" -jar "%1"
#注意前后均有空格,否则打开jar包时出现 “Could not create the Java Virtual Machine. Error: A fatal exception has occurred.” 的错误
原文:https://www.cnblogs.com/lytanz/p/15037663.html