Tutorial search

Tutorials
Stuff
Affiliates

Cool Stuff




The fastest way to master the basics of Adobe Photoshop

Click here to find out how

Photoshop Templates


Featured Photoshop templates - professional ready to use designs for your next project.

View all templates

Performance Analysis Tool for Java - Java tutorial


Discover the Performance Analyzer for Java, a tool that automatically detects Java threads that consume large amounts of system resources on Windows. This tool does not employ profiling, has a low overhead dependency, and reduces the likelihood of possible down time when concurrently running the profiler.
Category: Java tutorials > Development - Difficulty:


More cool Java tutorials:



Introducing inheritance to PropertyResourceBundles
Introducing inheritance to PropertyResourceBundles
Creating a fully internationalized Java application using PropertyResourceBundles can present some interesting design and implementation problems, including concern over how to modularize the bundles to be used in different areas of the application. This article explores a solution based on PropertyResourceBundles, which should simplify the design and implementation problems, while promoting reuse of existing bundles. Article includes code snippets.
Category: Java tutorials > Application - Difficulty:
Useful base classes for Java Game Programming
Useful base classes for Java Game Programming
This article describes the GameApplet, GamePanel and Game classes that I wrote. You will only
need to extend Game, while the other classes handle input and output.
Category: Java tutorials > Games - Difficulty:
Debug memory leaks in Java apps using HeapRoots
Debug memory leaks in Java apps using HeapRoots
Discover an interactive interface where one enters commands and gets results. HeapRoots is a tool for debugging memory leaks in Java apps through analysis of heap dumps, which are files holding information about objects in the JVM garbage collected heap.
Category: Java tutorials > Development - Difficulty:
Testing Grails: Squash bugs and build executable documentation
Testing Grails: Squash bugs and build executable documentation
Grails makes it easy to ensure that your Web applications start out bug free and stay that way. As a bonus, you can leverage your test code to produce a rich set of executable documentation that is always up-to-date. This article shows you the Grails testing ropes.
Category: Java tutorials > Application - Difficulty:
Writing a Complete 5 Card Poker Game in Java
Writing a Complete 5 Card Poker Game in Java
After browsing through some old coding projects, I came across a simple 5 card poker game I had to write for a Java course I took back in school. I found the project to be quite fun, and I thought the algorithms for determining each hand were worth sharing. These are no where near complex algorithms, they just provide a decent example of how to convert simple thoughts and problems into code.
Category: Java tutorials > Games - Difficulty: