The Java Game Development Tutorial Java / Miscellaneous
You should be already able to program in Java, although you don't have to be a expert! The tutorial will give you a very detailed introduction into the development of online games using Java. We will talk about Java Applets because everyone has a Internet browser, so everyone is able to play these games without installing the JDK!.
Java/Introduction to Java Java / Getting Started
This section introduces you with JAVA. Java is an Object Oriented Programming similar to C++ and Smalltalk. But JAVA is platform independent and follows the principle of WORA ( Write Once and Run Anywhere). It is unlike C, C++ which means that you write a JAVA program and compile it only once and run it on any operation system be it Windows, Linux, Solaris etc. If we talk about C++ then it is not all platform independent because needs to be compiled on each operation system in order to execute the program on different operation system. We will discuss this in detail in section Java Virtual Machine that how it achieve such a platform independence where as C, C++, FORTRAN, VB, VC++ and many others.
Introduction to Swing Java / Swing
This introduction to using Swing in Java will walk you through the basics of Swing. This covers topics of how to create a window, add controls, postion the controls, and handle events from the controls.
JT-Java Trainer Java / General Development
Java Trainer (JT) is for students who intend to learn Java , C#(or C++ for that matter). It is a simple programming system in a web page (no install), with a language close to C and Java, but cut-down.
Beginner Java Tutorial Java / Getting Started
Java programming language (object-oriented) is developed by Sun Microsystems. Java is a simple, scalable, general purpose object oriented programming language. This is a beginner java tutorial website covering java basics along with java source code.
Weighing in on Java native compilation Java / Getting Started
Java native compilation would surely topple the JVM, taking with it the Java platform's hard-fought platform independence. But even with its growing popularity and the increasing number of native compilers on the market, native compilation has a way to go before it poses a real threat to Java code's portability.
Bridging the gap to COM Java / Miscellaneous
One of the strengths of the Java platform is its object-oriented nature; one of the benefits of object-oriented languages is that they aid code reuse. But what if you're a Java programmer and you want to reuse code that wasn't written in the Java language? With Bridge2Java, an IBM alphaWorks technology, Java developers can integrate COM objects into their applications.
Determine the available memory in Java Java / General Development
This tutorial will give you a brief walkthrough on Java memory use in the sandbox and show how to use the Runtime class to discover the amount of memory available to your Java applet or application.
Using Custom Cursors in Java Java / Swing
This tutorial shows how to go beyond the predefined cursors in Java and create your own cursors using a GIF or PNG that are dsiplayed when the user moves the mouse over a Java component (AWT or Swing).
What's new in JDBC 3.0 Java / Database Integration
The Java Database Connectivity (JDBC) API has emerged as a key part of the Java 2 Standard Edition (J2SE) and Java 2 Enterprise Edition (J2EE) platforms. It is the primary standards-based mechanism for the Java language to programmatically access relational databases. Here we summarize the key new features as outlined in Sun Microsystems' recently released Proposed Final Draft 3.0 of the JDBC specification.
Assertions in Java Java / General Development
This article describes how assertion works in java. This feature is added in JDK1.4. This article also shows how one can enable and disable assertions in Java programs.