Error: Unable to access xxx.jar
在cmd中运行java -jar xxx.jar
出现如下错误:
Error: Unable to access xxx.jar
解决方法:
- 使用绝对路径:
java -jar D:\Program Files (x86)\xxx.jar
此时依然报错:
Error: Unable to access jarfile D:\Program - 添加双引号:
java -jar "D:\Program Files (x86)\xxx.jar"