How to run a jar file in a linux commandline

前端 未结 6 1951
野趣味
野趣味 2021-01-30 08:44

How to set the classpath to the current directory and also run the jar file named load.jar present in the current directory by providing the argument as load=

6条回答
  •  时光说笑
    2021-01-30 09:12

    sudo -sH
    java -jar filename.jar
    

    Keep in mind to never run executable file in as root.

提交回复
热议问题