Java

TwitterFacebook
Get flash to fully experience Pearltrees
http://docs.oracle.com/javase/tutorial/java/index.html

Trail: Learning the Java Language (The Java™ Tutorials)

This trail covers the fundamentals of programming in the Java programming language. Object-Oriented Programming Concepts teaches you the core concepts behind object-oriented programming: objects, messages, classes, and inheritance. This lesson ends by showing you how these concepts translate into code.

A printf format reference page (cheat sheet) | printf reference for java perl ruby

Summary: This page is a printf formatting cheat sheet. I originally created this cheat sheet for my own purposes, and then thought I would share it here. A cool thing about the printf formatting syntax is that the specifiers you can use are very similar, if not identical, between several different languages, including C, C++, Java, Perl, Ruby, and others, so your knowledge is reusable, which is a good thing. printf formatting with Perl and Java In this cheat sheet I'm going to show all the examples using Perl, but at first it might help to see one example using both Perl and Java. So, here's a simple Perl printf example to get us started: http://alvinalexander.com/programming/printf-format-cheat-sheet
T his is a course in Java programming for beginners. It covers the fundamentals of programming, roughly the same material that is covered in a beginning programming course in a university or in a high school AP Computer Science course. For maximum benefit, go though these notes interactively, thinking about and answering the question at the bottom of each page. There are about 20 pages per chapter. If you spend about 3 minutes per page each chapter will take about 60 minutes, or longer if you copy and run some of the programs.

Introduction to Computer Science using Java

http://chortle.ccsu.edu/java5/index.html#82
java.awt Class Graphics2D java.lang.Object java.awt.Graphics java.awt.Graphics2D

Graphics2D (Java 2 Platform SE v1.4.2)

http://docs.oracle.com/javase/1.4.2/docs/api/java/awt/Graphics2D.html

Introduction to Computer Science using Java

http://chortle.ccsu.edu/CS151/cs151java.html T his is a course in Java programming for beginners. It covers the fundamentals of programming, roughly the same material that is covered in a beginning programming course in a university or in a high school AP Computer Science course. For maximum benefit, go though these notes interactively, thinking about and answering the question at the bottom of each page.

Convert from type X to type Y

Convert from type X to type Y Tag(s): String/Number String/Number integer to String : int i = 42; String str = Integer.toString(i); or String str = "" + i double to String : String str = Double.toString(i); long to String : http://www.rgagnon.com/javadetails/java-0004.html

Java Programming

Overview. Our goal in this chapter is to convince you that writing a computer program is easier than writing a piece of text such as a paragraph or an essay. Writing prose is difficult: we spend many years in school to learn how to do it. http://introcs.cs.princeton.edu/java/10elements/

Java on the Brain -- Applets

http://www.javaonthebrain.com/brain.html This is a list of the more significant applets I've written since I started hacking Java in February 1996. I felt the need to group them into three basic categories depending on how they came about. There are those written just for fun, there are custom-made ones and, finally, those that have not yet been finished.
In this section, you will learn how to use the java.util.vector class. In this example we are going to show the use of java.util.Vector class. We will be creating an object of Vector class and performs various operation like adding, removing etc. Vector class extends AbstractList and implements List, RandomAccess, Cloneable, Serializable . The size of a vector increase and decrease according to the program. Vector is synchronized. http://www.roseindia.net/java/beginners/vectordemo.shtml

Java Vector,Using Vectors in Java,Vector Object in Java,Online Java Vector Example

Welcome to the NetBeans Platform Certified Training

The NetBeans Platform is a mature open sourced Swing framework for building general rich client applications. The platform is a "generic application", that is, a runtime which can be used to develop desktop applications. NetBeans IDE is one example of this type of application, but there are many others. One of the key distinctions of software built upon the NetBeans Platform is modularity: reuse in the large. Such software is designed as logical sets of macro-components which integrate through well-defined API contracts. Writing modular applications brings some enhancements to programming in standard Java, particularly in the ability to have Java classes which are only public to other classes within the archive they reside in. http://edu.netbeans.org/courses/nbplatform-certified-training/
Main Menu Java Applets Games 3-D Blox N/A A 3-D maze game (that's all I can tell you!)

Game applets