NetBeans起動エラーJVM creation failed解決

2132 ワード

先日NetBeansをインストールしてから使ったことがありますが、今日の起動時にJVM creation failedと報告されました.java仮想マシンのロードに失敗したのは明らかです.とりあえず、どのような構成に関係しているのでしょうか.
複数回試した結果、理由が見つかりました.
NetBeansインストールディレクトリのetc下netbeans.confファイルで、
# ${HOME} will be replaced by JVM user.home system property
netbeans_default_userdir="${HOME}/.netbeans/7.0"

# Options used by NetBeans launcher by default, can be overridden by explicit
# command line switches:
netbeans_default_options="-J-client -J-Xss2m -J-Xms32m -J-XX:PermSize=32m -J-XX:MaxPermSize=384m -J-Dapple.laf.useScreenMenuBar=true -J-Dapple.awt.graphics.UseQuartz=true -J-Dsun.java2d.noddraw=true"
# Note that a default -Xmx is selected for you automatically.
# You can find this value in var/log/messages.log file in your userdir.
# The automatically selected value can be overridden by specifying -J-Xmx here
# or on the command line.

# If you specify the heap size (-Xmx) explicitly, you may also want to enable
# Concurrent Mark & Sweep garbage collector. In such case add the following
# options to the netbeans_default_options:
# -J-XX:+UseConcMarkSweepGC -J-XX:+CMSClassUnloadingEnabled -J-XX:+CMSPermGenSweepingEnabled
# (see http://wiki.netbeans.org/FaqGCPauses)

# Default location of JDK, can be overridden by using --jdkhome <dir>:
netbeans_jdkhome="c:\Program Files\Java\jdk1.7.0_02"

# Additional module clusters, using ${path.separator} (';' on Windows or ':' on Unix):
#netbeans_extraclusters="/absolute/path/to/cluster1:/absolute/path/to/cluster2"

# If you have some problems with detect of proxy settings, you may want to enable
# detect the proxy settings provided by JDK5 or higher.
# In such case add -J-Djava.net.useSystemProxies=true to the netbeans_default_options.

 
#は注釈を表すので、#部分は見なくても、#を付けていない部分だけを見て、問題は2行目に#を付けていない:
netbeans_default_optionsには-J-XX:MaxPermSize=384 mの
何度か試して300に変更してもいけませんが、最後に256に変更して起動に成功しました.多分問題は最大値が大きすぎるので、少し小さく調整すればいいということです.