运行命令行中的JAR文件导致异常。

huangapple go评论72阅读模式
英文:

Running jar from cmd results in Exception

问题

我试图在命令提示符中运行我的 .jar 文件,但返回 ClassNotFoundException 错误。我查看了 StackOverflow 上的其他问题,但没有找到适用于我的解决方案。所有的问题都在使用一个我没有的包。

我的命令如下:

java -cp 路径\至\我的\Jar\Formatter.jar Formatter.java

在我的文件夹中有 Formatter.jar 和 Formatter.java,没有 .class 文件。我已经在 PowerShell 中尝试过这个命令,它运行得很好...

编辑:修正了拼写错误

英文:

I am trying to run my .jar from cmd but it returns the error ClassNotFoundException. If looked into other questions on StackOverflow but couldnt find a working solution for me. All the questions were using a package which I dont.

My command looks like this:

java -cp Path\To\My\Jar\Formatter.jar Formatter.java

In my folder there is the Formatter.jar and Formatter.java no .class
I have tried my command in PowerShell and it works just fine...

EDIT: Fixed typos

答案1

得分: 1

打开存放文件的jar文件夹 -> 清除顶部的目录面板并输入cmd。 -> cmd将会打开 -> 然后输入:java -jar formatter.jar

英文:

Open the jar folder where the file is stored -> clear the directory panel at the top and type cmd. > the cmd will open -> then type : java -jar formatter.jar

huangapple
  • 本文由 发表于 2020年9月18日 16:33:20
  • 转载请务必保留本文链接:https://go.coder-hub.com/63952119.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定