2014-10-26 93 views

回答

1

這個 「錯誤」 會發生。我不相信它是或者應該對任何事情都很關心。只要應用程序運行良好,我看不出真正的問題。所以不,這不是非常重要,而且看到應用程序仍然建立(並且很可能正常工作),但我沒有理由嘗試糾正它。

此外,如果您在應用程序中確實存在錯誤(根本原因),則this可能會有所幫助。

相關/重要從線程後:

A quick Google search indicates that this is output from the Java virtual machine upon realizing that certain environment variables, JAVA_TOOL_OPTIONS and JAVA_OPTIONS have been set.

http://www.nbl.fi/~nbl97/java/tuning/troubles/

These variables might be introduced in your Eclipse launch configuration. More likely, they may have been set in your workstation's environment by something you've recently installed.

On Windows XP, you can access the environment variables by right clicking on "My Computer", selecting "Properties", switch to the "Advanced" tab and click "Environment Variables". In that window, you should be able to see if the environment variable has been set up.

Alternatively, you can open a command prompt and type "SET" to see what environment variables have been set.

+0

啊是的,似乎當我正在做我的路徑我從來沒有注意到,我有一個變量名爲JAVA_OPTIONS這些設置。那麼,至少如果有問題,我知道它的來源。謝謝。 – Shadowsista 2014-10-26 20:56:04

3

我敢肯定的_JAVA_OPTIONS變量是在您的環境設置夾着,它顯示無處。爲了解決這個問題,

  1. 按Windows鍵的同時
  2. 暫停/ Break鍵的窗口將會彈出,點擊「高級系統設置」
  3. 點擊「環境變量」
  4. 檢查系統變量。
  5. 刪除_JAVA_OPTIONS條目。
相關問題