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.

View RSS Feed

Recent Blogs Posts

  1. How and why an SSCCE?

    The term SSCCE gets thrown around a lot in online programming forums. Its a simple acronym that stands for Short, Self Contained, Correct Example. But what is so important about an SSCCE? For starters, creating an SSCCE provides a very simple example that clearly demonstrates a given problem, helping one receive help and advice much quicker. But it also goes far beyond just that. Often just the process alone of writing an SSCCE will unveil the problem at hand. But even more important, the process ...
  2. Debugging with System.out.println

    System.out.prinln is quite possibly the most useful debugging tool there is - especially for the beginner programmer with no knowledge of other tools such as debuggers, assertions, and/or loggers. System.out.println prints to the command line the values passed to the method as an argument (if an object is passed, the String returned by Object.toString() is printed). For debugging, this tool allows the programmer to evaluate a variable value at a certain position in the code. But that's only the ...

    Updated March 11th, 2011 at 09:25 PM by copeg

    Categories
    Debugging
  3. New Media section added to the site

    Hey everyone,

    I have just added a new 'Media' page to the site. You can access it via the Navbar or here - http://www.javaprogrammingforums.com/media.php

    The Media section contains Java tutorial videos from around the internet. Members have the option to submit their own videos, post comments, rate and share etc.

    If anyone has any issues or questions, please PM me or comment on this post.
  4. Java Programming Articles

    I have recently been working on getting the Articles part of the site complete. You will see the articles button in the navbar at the top of the site. The Articles page is a collection of Java Programming Articles which have been promoted from useful threads in the Forum.

    The current Articles are written by the forum moderators and cover things from Common Java Mistakes through to General CS Concepts

    Articles are not strictly reserved for moderators. If a forum member ...