Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Error Message?!

Options
  • 14-04-2005 2:48pm
    #1
    Registered Users Posts: 78 ✭✭


    Im getting this error while trying to compile a Java GUI:

    The system is out of resources.
    Consult the following stack trace for details.
    java.lang.OutOfMemoryError

    Does anybody have any ideas on how to deal with this?


Comments

  • Registered Users Posts: 834 ✭✭✭fragile


    Buy more memory for your system!

    Seriously, that error message is pretty self-explanatory..


  • Registered Users Posts: 78 ✭✭al.


    Do you know what you're talking about or are you just being a f*cking prick.


  • Registered Users Posts: 14,317 ✭✭✭✭Raam


    try "javac -verbose" to see at which stage the compiler is tripping up. It might offer a pointer


  • Closed Accounts Posts: 25 dan_pretty_boy


    Hi,

    try increasing the heap sizes when starting the application

    e.g.

    java -Xms256m -Xmx512m ..


    danny


  • Registered Users Posts: 15,258 ✭✭✭✭Rabies




  • Advertisement
  • Registered Users Posts: 78 ✭✭al.


    Cheers, sorted it out, it was actually just a silly little syntax mistaken that was throwing up that error. Thanks anyway.


Advertisement