Tutorial search

Tutorials
Stuff
Affiliates

Photoshop Templates


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

View all templates

Writing Java Database Apps with purQuery - Java tutorial


This demo describes three scenarios, so you can learn how you can use pureQuery -- IBM's new paradigm for writing Java database applications. The first one is database-driven objectization, or relational table-to-Java transformation. The second is query-driven objectization, or SQL-to-Java transformation. The third is object-relational mapping, or Java-to-SQL transformation.
Category: Java tutorials > Database - Difficulty:

More cool Java tutorials:



Use XPath to Select Portions of XML Documents
Use XPath to Select Portions of XML Documents
XML is a data format concerned primarily with compatibility and flexibility. This tutorial will teach you the fundamentals of XPath. Part 1 of this tutorial details the XPath specification, which allows you to specify particular sections of an XML document using a directory-like syntax. You'll learn the syntax of XPath, and you'll work with tools that let you experiment with XPath.
Category: Java tutorials > XML - Difficulty:
Locating resources in Java
Locating resources in Java
A resource is a file situated somewhere in the class path. It can be a file in a package folder, in the classes folder or in a jar file. Resources are usually needed at runtime and they can be properties files, images and so on. The ClassLoader and Class classes provide methods to find the desired resources but a little bit of attention has to be payed to the quirks of this API.
Category: Java tutorials > Basics - Difficulty:
Native Look and Feel in Java
Native Look and Feel in Java
By default a Swing application or applet does not have the native look and feel of the operating system. This tutorial shows how to modify your application to use the correct look and feel for the platform.
Category: Java tutorials > Swing - Difficulty:
Displaying a splash image with Java 6
Displaying a splash image with Java 6
Introduced in Java 6 is the option of displaying a splash screen when an application starts. The splash image file can be specified on the command line with the new splash option -splash:splash.jpg or in the manifest of a jar file with the SplashScreen-Image option.
Category: Java tutorials > Swing - Difficulty:
Diagnosing Java code: The case for static types
Diagnosing Java code: The case for static types
Love or hate it, static type checking can make code more robust. Programming languages are moving away from static type checking, but it is too powerful a debug resource to abandon. Static type checking can be one of the key weapons in a powerful arsenal against introducing and for detecting bugs. This article explains why we should be glad that the Java language supports it, and discusses how it can be made even better.
Category: Java tutorials > Development - Difficulty: