In my project configuration in IDEA, I have the following text fields:
I woul
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