java.lang.ExeptionInInitializerError > build 444

Discussion in 'Bukkit Help' started by thommy101, Mar 20, 2011.

Thread Status:
Not open for further replies.
  1. Hi,
    I'm trying to setup a bukkit server.. but with every build higher than 444 (including 444) gives me the following error.

    Specs:
    Windows 7 sp1 64-bit, tested with both 32 and 64 bit java.

    No plugins

    .Bat

    @echo off
    "%ProgramFiles(x86)%\Java\jre6\bin\java.exe" -Xms1024M -Xmx1024M -jar craftbukkit-0.0.1-SNAPSHOT-444.jar nogui
    pause

    @echo off
    java -Xms2048M -Xmx2048M -jar craftbukkit-0.0.1-SNAPSHOT-444.jar nogui
    pause

    Does anyone know how to solve this?

    Code:
    java.lang.ExceptionInInitializerError
            at java.lang.Class.forName0(Native Method)
            at java.lang.Class.forName(Unknown Source)
            at jline.ConsoleReader.class$(ConsoleReader.java:39)
            at jline.ConsoleReader.<clinit>(ConsoleReader.java:38)
            at net.minecraft.server.MinecraftServer.<init>(MinecraftServer.java:65)
            at net.minecraft.server.MinecraftServer.main(MinecraftServer.java:388)
            at org.bukkit.craftbukkit.Main.main(Main.java:75)
    Caused by: java.util.MissingResourceException: Can't find bundle for base name j
    line.CandidateListCompletionHandler, locale nl_NL
            at java.util.ResourceBundle.throwMissingResourceException(Unknown Source
    )
            at java.util.ResourceBundle.getBundleImpl(Unknown Source)
            at java.util.ResourceBundle.getBundle(Unknown Source)
            at jline.CandidateListCompletionHandler.<clinit>(CandidateListCompletion
    Handler.java:31)
            ... 7 more
    Caused by: java.lang.ClassCastException: jline.CandidateListCompletionHandler ca
    nnot be cast to ResourceBundle
            at java.util.ResourceBundle$Control.newBundle(Unknown Source)
            at java.util.ResourceBundle.loadBundle(Unknown Source)
            at java.util.ResourceBundle.findBundle(Unknown Source)
            at java.util.ResourceBundle.findBundle(Unknown Source)
            at java.util.ResourceBundle.findBundle(Unknown Source)
            ... 10 more
     
  2. Offline

    mughi

    not part of the issue, but you are trying to start bukkit twice (although it looks like the second one won't start until you stop the first one)


    have you tried it with vanilla minecraft? (jar from minecraft.net)

    also, try a newer recommended build (or just re-download 444, although that is really old)

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 12, 2016
  3. hi,

    i'm sure it is the only server running...
    tried with hMod and Vanilla, they are both running ;)

    and @ the tip of downloading a newer recommend build.. tried all after build 444 :p none are working.. all the same error as above
     
  4. Offline

    TnT

    What is the output of your java -version command?
     
  5. Offline

    mughi

    good call.. i was initially going to say his jre seems corrupt, but that wasn't likely w/ two different installs.. didn't think of old/odd versions though
     
  6. java -version
    java version "1.6.0_24"
    Java(TM) SE Runtime Environment (build 1.6.0_24-b07)
    Java HotSpot(TM) 64-Bit Server VM (build 19.1-b02, mixed mode)

    here you go.. tried a couple reinstalls.. (completly remove java, and reinstall it) but still doesnt work with any build higher than 444
     
  7. Offline

    TnT

    Your bat file, does it contain all of these lines?
    Code:
    @echo off
    "%ProgramFiles(x86)%\Java\jre6\bin\java.exe" -Xms1024M -Xmx1024M -jar craftbukkit-0.0.1-SNAPSHOT-444.jar nogui
    pause
    
    @echo off
    java -Xms2048M -Xmx2048M -jar craftbukkit-0.0.1-SNAPSHOT-444.jar nogui
    pause
     
  8. ofcourse not xD

    the above .bat file is to test java 32 bit, and the bottem .bat file is to test java 64 bit
    so they are 2 diferent .bat files ;)
     
  9. Offline

    TnT

    I was hoping so, but thought I'd double check. Try starting completely fresh - take your x64 batch file, and download the latest RB of CraftBukkit. Those two files should be the only two files in a directory of your choosing that the user you are running it as has full access (lets say c:\craftbukkit).
    Try to fire it up using the batch file. It will generate all the other files you need. What are the results?
     
  10. Okey.. thats wierd... running it of D:\bukkit works :S (not C: because it's an SSD)

    but: thx xD it works now with build 552 ;)
     
Thread Status:
Not open for further replies.

Share This Page