Using environment variables in “VM options” and “Program arguments”

前端 未结 3 762
北海茫月
北海茫月 2020-12-11 01:02

In my project configuration in IDEA, I have the following text fields:

\"Project

I woul

3条回答
  •  独厮守ぢ
    2020-12-11 01:21

    Environment variables are not the same thing as program arguments. If you want to pass program arguments then you would call

    java MyMainClass /some/random/path 2
    

    Then args[] would contain

    0: /some/random/path
    1: 2
    

提交回复
热议问题