Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 9 of 9

Thread: New to Java. Looking for help, not a handout

  1. #1
    Junior Member
    Join Date
    May 2012
    Location
    florida
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default New to Java. Looking for help, not a handout

    This is my first time posting here and i hope im in the correct section.
    I run a server for the game minecraft from my home. Its a java game (minecraft) and as we (my friend/co-owner) add new plugins to the game we are slowly learning certain rules about the code but have very very little knowledge of it as a whole. We're working on learning but its a slow process.
    Ill get to the main question....java is crashing. We're pretty sure its a plugin problem but instead of just removing a plugin we'd rather find out WHY its causing the problem.
    Im have error logs that are created each time the crash occurs so ive got something to go by but about 99% of it is beyond me.

    I will post the latest log and hopefully someone can help point me in the right direction.
    If there is more info needed, just tell me and ill update. Thank you in advance!

    I attached the log file. thank you
    Attached Files Attached Files


  2. #2
    Crazy Cat Lady KevinWorkman's Avatar
    Join Date
    Oct 2010
    Location
    Washington, DC
    Posts
    5,424
    My Mood
    Hungover
    Thanks
    144
    Thanked 636 Times in 540 Posts

    Default Re: New to Java. Looking for help, not a handout

    Those logs are probably going to be even more mysterious to us than they are to you, since they're going to be application dependent. We could try helping you track down a specific Exception of some kind, but we can't really tell you what those logs mean.

    I'd parse through the logs and track down any error information, then google that. For example, googling "ExceptionCode=0xc0000005" comes up with some results.

    I'd also try contacting the developers of whatever plugin you're using that causes the error.
    Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
    Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!

  3. #3
    Junior Member
    Join Date
    May 2012
    Location
    florida
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: New to Java. Looking for help, not a handout

    trying to find the specific plugin. But thank you for the info. This is just a wild guess, but could this be caused by two different plugins trying to access the same address of memory ?

  4. #4
    Junior Member
    Join Date
    May 2012
    Location
    florida
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: New to Java. Looking for help, not a handout

    did a quick google search and that exceptioncode u copied comes up with everything from Network printers not working to Internet explorer crashing. going to be doing a lot of googleing today

  5. #5
    Crazy Cat Lady KevinWorkman's Avatar
    Join Date
    Oct 2010
    Location
    Washington, DC
    Posts
    5,424
    My Mood
    Hungover
    Thanks
    144
    Thanked 636 Times in 540 Posts

    Default Re: New to Java. Looking for help, not a handout

    Quote Originally Posted by rockloop13 View Post
    trying to find the specific plugin. But thank you for the info. This is just a wild guess, but could this be caused by two different plugins trying to access the same address of memory ?
    I'm really not sure, but I wouldn't think that would matter at all, especially in Java.
    Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
    Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!

  6. #6
    Junior Member
    Join Date
    Nov 2011
    Posts
    19
    My Mood
    Inspired
    Thanks
    1
    Thanked 1 Time in 1 Post

    Default Re: New to Java. Looking for help, not a handout

    This is a really common error with minecraft, I get it all the time with no plugins, if your running the server with more memory try stopping that

  7. #7
    Junior Member
    Join Date
    May 2012
    Location
    florida
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: New to Java. Looking for help, not a handout

    Ok. will try that. System has 16gigs, we have 12 allocated to minecraft. dropped it down to 10 to see what happens. thanks for the advice!

  8. #8
    Super Moderator Sean4u's Avatar
    Join Date
    Jul 2011
    Location
    Tavistock, UK
    Posts
    637
    Thanks
    5
    Thanked 103 Times in 93 Posts

    Default Re: New to Java. Looking for help, not a handout

    The only thing that *won't* have caused that will be any Java code you're using. That output will be produced by a bug in the JVM, in any JNI code you're running, in Windows or a problem with your hardware.

    The log says:
    # Problematic frame:
    # V [jvm.dll+0xc8bb8]
    So it's in JVM code, although that's no guarantee that the JVM code is at fault. Have you tried running your software on the latest Java 6 JRE?

  9. #9
    Junior Member
    Join Date
    May 2012
    Location
    florida
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: New to Java. Looking for help, not a handout

    it looks like drivers for my video card are in the program files(x86) folder, could the 32 bit drivers be causing an issue with java 7 64?

    C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common

    I usually leave the game open to view the player count and make sure its online. I think the crashes have happened when ive left it running. I will just leave the command console running the game up for now and see if i can go a few days without a problem. thanks for the reply!