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
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Error Message?!

  • 14-04-2005 1:48pm
    #1
    Registered Users, Registered Users 2 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, Registered Users 2 Posts: 834 ✭✭✭fragile


    Buy more memory for your system!

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


  • Registered Users, Registered Users 2 Posts: 78 ✭✭al.


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


  • Registered Users, Registered Users 2 Posts: 14,318 ✭✭✭✭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, Registered Users 2 Posts: 15,257 ✭✭✭✭Rabies




  • Advertisement
  • Registered Users, Registered Users 2 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