infoSyStem
infoSyStem

Reputation: 145

netbeans enviromental variable

What is the name of the enviromental variable that netbeans IDE uses ?

Upvotes: 0

Views: 150

Answers (2)

Bill the Lizard
Bill the Lizard

Reputation: 405765

This is probably because your class files are in a package. Say you have your .java files in a src directory and your classes compile to a bin directory. If your main class is in a package named org.example then you'd run your program from the command line as follows (make sure you're in the bin directory, not in src):

C:\MyProject\bin> java org.example.MyClass

Upvotes: 0

ynh
ynh

Reputation: 2939

You can use these start up parameters with the NetBeans IDE

Upvotes: 1

Related Questions