简体   繁体   中英

Error on Eclim installation

I would like to install eclim, but I got error. Does anyone has idea how whats wrong?

$ java -jar eclim_1.7.2.jar 
Buildfile: installer.xml
2011-11-03 22:04:43,635 INFO  [org.formic.Installer] Running Installer.
2011-11-03 22:04:43,750 ERROR [ANT] 
jar:file:/home/slawosz/Downloads/eclim/eclim_1.7.2.jar!/installer.xml:36: java.lang.ExceptionInInitializerError
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:116)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:390)
    at org.apache.tools.ant.Target.performTasks(Target.java:411)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1397)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1366)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1249)
    at org.formic.ant.Main.runBuild(Main.java:232)
    at org.formic.ant.Main.startAnt(Main.java:81)
    at org.formic.ant.Main.main(Main.java:63)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:616)
    at com.simontuffs.onejar.Boot.run(Boot.java:306)
    at com.simontuffs.onejar.Boot.main(Boot.java:159)
Caused by: java.lang.ExceptionInInitializerError
    at com.jgoodies.looks.plastic.PlasticLookAndFeel.<clinit>(PlasticLookAndFeel.java:135)
    at org.formic.Installer.setLookAndFeel(Installer.java:293)
    at org.formic.Installer.run(Installer.java:109)
    at org.formic.ant.InstallerTask.execute(InstallerTask.java:89)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:616)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    ... 16 more
Caused by: java.awt.HeadlessException
    at sun.awt.HeadlessToolkit.getScreenResolution(HeadlessToolkit.java:221)
    at com.jgoodies.looks.LookUtils.isLowResolution(LookUtils.java:480)
    at com.jgoodies.looks.LookUtils.<clinit>(LookUtils.java:249)
    ... 26 more
2011-11-03 22:04:43,767 DEBUG [ANT] 
BUILD SUCCESSFUL
Total time: 0 seconds
java.lang.ExceptionInInitializerError
2011-11-03 22:04:43,780 WARN  [ANT]      [echo] Installation canceled.

您可能想从-Djava.awt.headless = true开始,看看是否可以解决问题...如果我想运行某些图形软件包(过去的话),我曾经在旧的JVM上遇到过这种情况。

eclipse may have some compatibility issue with the JVM. make sure that eclipse and JVM have same bit.(32 or 64bit)

After another try it worked without any problems on my machine.

PS. I switched vim to emacs....

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM