eclipse-on-mac-10-8-installed-1-7-0-jre-jdk-but-eclipse-wont-launch launcher eclispe must use jre6,so run it from the terminaljava
./eclipseapp
Info.plist
对于此问题只须要修改jdk安装目录下的Info.plist文件,而后重启系统便可: 如,个人系统上是修改:/Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Info.plist 文件,将这部分eclipse
<key>JVMCapabilities</key> <array> <string>CommandLine</string> </array>ide
修改成一下便可: <key>JVMCapabilities</key> <array> <string>JNI</string> <string>BundledApp</string> <string>WebStart</string> <string>Applets</string> <string>CommandLine</string> </array>idea
To force running under JDK 1.7 edit /Applications/<Product>.app/Contents/Info.plist file, change JVMVersion from 1.6* to 1.7* :ip
<key>JVMVersion</key> <string>1.7*</string>terminal
editing Info.plist inside /Applications/PyCharm.app/Contents Replace the JVM version from 1.6* to 1.7*get