J2SE

he Java 2 Platform has various incarnations as well, including Java 2 Platform, Standard Edition (J2SE). J2SE is used primarily for writing applets and other Java-based applications.One of the primary uses of J2SE is the development of Java applications for individual computers. Web-based activity sometimes lives and dies by the successful integration of applets into e-commerce and other Web-specific functions. J2SE applets and other applications make these functions run smoothly; without them, many transactions and other Internet interactions would not take place. In this way, J2SE is a tremendous enabler of Web activity.
Another important functionality made possible by J2SE is JavaBeans. These are reusable applications that can be developed and assembled easily in order to create more sophisticated applications. Basically, they are the building blocks of personalized J2SE applications. Java may be the base technology, but JavaBeans are what makes J2SE functionality and individuality really click.

Installing Java on Windows



Install
Download Java Development Kit (JDK). http://java.sun.com/javase/downloads/index.jsp

Configure
Set environment variable, %PATH%.





Verify

Finish




Simple Java Program

Here is an example Java program. It is about as small as a Java program can be. When it runs, it writes Hello World! on the computer monitor. The details will be explained later.

class Hello
{
public static void main ( String[] args )
{
System.out.println("Hello World!");
}
}

This program can be created using a text editor such as the Notepad editor that comes with Windows. (Details later.) This source program is a text file saved on a hard disk. The file is named Hello.java.

A source program is a text file that contains a program (such as above) written in a programming language. Since it contains ordinary text (stored as bytes) it can not be directly executed (run) by the computer system. As a text file, you can print it, display it on the monitor, or alter it with a text editor.

Introduction Java

The Java™ language, and the ever-growing Java platform, have revolutionized programming. The goal of this tutorial is to introduce you to the Java syntax you're most likely to encounter professionally, and to expose you to idioms that will help you avoid trouble. Follow along with Java professional Roy Miller as he guides you through the essentials Java programming, including the OOP paradigm and how it applies to Java programming, Java language syntax and use, creating objects and adding behavior, working with collections, handling errors, and tips for writing better code.

Multiple editions of the Java platform
Three editions of the Java platform make it easier for software developers, service providers, and device manufacturers to target specific markets:

← Previous Page

Awards

100 Blog Indonesia Terbaik


IP
Powered by Blogger.