Java program prints out "JAVA_OPTIONS"

java

Solution

That will happen if the environment variables `JAVA_TOOL_OPTIONS` or `_JAVA_OPTIONS` are set. If you don't need them I suggest not setting them. If you are running it in Eclipse then I'd look into the "Run Configuration" or Eclipse's configuration. There is, per this SO question, no way of suppressing these messages if these variables are set, apparently.

Problem

I am starting to learn Java. After I run my code, I get some additional lines along with the expected output. Can someone please tell me what they mean? My Code: ``` public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World!!!"); } } ``` Output: ``` Picked up JAVA_TOOL_OPTIONS: -agentlib:jvmhook Picked up _JAVA_OPTIONS: -Xrunjvmhook -Xbootclasspath/a:C:\PROGRA~2\HP\QUICKT~1\bin\JAVA_S~1\classes;C:\PROGRA~2\HP\QUICKT~1\bin\JAVA_S~1\classes\jasmine.jar Hello World!!! ``` Thanks for your help!

Original source

Related problems