Skip to main content

Eclipse Java IDE

This tutorial consists of;

  • Downloading and installing ECLIPSE
  • Example 1: Creating Hello World for console
  • Example 2: Java project using JFrame
  • Example 3: Applet project
  • EXAMPLE 4: Toggle Breakpoints and Debug mode

DOWNLOAD JDK: First, make sure latest JDK installed, download here (currently we have JDK1.8)http://www.oracle.com/technetwork/java/javase/downloads/

Shortcut link http://bit.ly/keruleclipse

JDK Installation is damn easy, double click the downloaded EXE file, and continue.

download-jdk

DOWNLOAD ECLIPSE: Should you prefer the latest version, download here –> http://www.eclipse.org/downloads/eclipse-packages/
choose either 32bit or 64bit suitable to you Windows version. The current Eclipse version is codenamed NEON, as the writing of this tutorial.

download-eclipse-neon

Copy the downloaded zip file to you harddisk. Right click and extract here.

extract eclipse-zip

Locate the eclipse folder, and double-click eclipse.exe to run the application.

eclipse-exe

readmorebutton

EXAMPLE 1: Creating Hello World project for console

Go to menu; File->New-> Java project.

new-project

Provide the project name. Click FINISH button.

new Hello project

Open the project navigation, locate SRC folder.

Right-click –> New –> Class.

new-class

Provide the package name. Use the reverse domain as suggested in Java convention.

Provide the class name which start with capital letter.

Choose to have the main method. And hit FINISH…

new-class-details

Write the Java code, example System.out.println(“Hello World”);. Save and hit the RUN button. You’ll see the output in the console below.

console-running-hello-world

EXAMPLE 2: Project with JFrame

Create a project, and a class as similar to EXAMPLE 1. Write your code containing the JFrame API (or copy & paste codes below). Hit RUN, and the output of the program will be displayed in Window.

example-with-JFrame

Code sample with JFrame

package net.kerul.hello;

import javax.swing.*;//the JFrame class resides here
import java.awt.*;
import java.awt.event.*;

//JFrame superclass//FrameButang subclass
class Hello extends JFrame implements ActionListener{

    private JButton btnMerah, btnBiru;//declare buttons *****
    //constructor
    public Hello() {
        //buttons
        btnMerah=new JButton("Merah");
        btnMerah.addActionListener(this);
        //biru *****
        btnBiru=new JButton("Biru");
        btnBiru.addActionListener(this);

        Container p1 = getContentPane();
        p1.setLayout(new FlowLayout());
        p1.setBackground(Color.white);
        //draw GUIs
        p1.add(btnMerah);
        p1.add(btnBiru);//btn biru *****
    }//end FrameButang

    public static void main(String [] args) {
        //initiate jframe
        Hello frame = new Hello();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setTitle("Kerul: HELLO");//window title
        frame.setSize(400, 300);//widthXheight
        frame.setVisible(true);//show window
    }//end main

    public void actionPerformed(ActionEvent e){
        Container p1 = getContentPane();

        if (e.getActionCommand().equals("Merah"))
            //button Merah clicked
            p1.setBackground(Color.red);
        else if (e.getActionCommand().equals("Biru"))
            //button Biru clicked
            p1.setBackground(Color.blue);
      }//end actionPerformed

}//end class

 

 

EXAMPLE 3: Applet with image and audio

applet-sample-with-audio-image

You may download the code sample here - https://drive.google.com/drive/folders/0B5_Hw_xzXWcXdWtscU12RkFheWc?usp=sharing

To start an applet, similarly create a project and class as in EXAMPLE 1.

Copy and paste the image and audio files to the Java project in Eclipse.

applet-resources

To run the applet in the AppletViewer, go to Run Configurations.

run-configuration-applet

The dimensions of the output Applet can be changed here –> Parameters. Hit Run…

run-configuration-applet-dimension

And you’ll have your applet. All the best…

AppletViewer

Applet code sample

package net.kerul.rabitah;

import java.applet.*;
import java.awt.*;
import java.awt.event.*;

//simple applet example with image and audio (wav)
//by KERUL.net

public class Rabitah extends Applet implements ActionListener{
    Image rabitah;
    Button play,stop;
    AudioClip audioClip;
    public void init(){
        //image handling
        rabitah=getImage(getCodeBase(),"rabitah800x500.jpg");
        //audio handling
        play = new Button("  Play in Loop  ");
        add(play);
        play.addActionListener(this);
        stop = new Button("  Stop  ");
        add(stop);
        stop.addActionListener(this);
        audioClip = getAudioClip(getCodeBase(), "rabitah.wav");
    }//end init
    public void paint (Graphics g){
        g.drawImage(rabitah, 0, 0, 800, 500, this);
       
    }//end paint
    public void actionPerformed(ActionEvent ae){
            Button source = (Button)ae.getSource();
            if (source.getLabel() == "  Play in Loop  "){
                audioClip.play();
        } 
        else if(source.getLabel() == "  Stop  "){
            audioClip.stop();
        }
    }//end actionPerformed
}//end class

 

EXAMPLE 4: Toggle Breakpoints and Debug mode

Right-click on the project Java file, choose Debug As option.

debug-menu

You may apply the Togle Breakpoint at the code’s line number. Watch the variables values, changing value are in yellow.

togle-breakpoint-debug-mode

Code sample for debugging

package net.kerul.tb;

import java.io.*;
public class TB {

    public static void main(String args[]) throws IOException {
        DataInputStream io=new DataInputStream(System.in);
         //List of 15 numbers
        //int numbers[] = new int[10];
        int numbers[]={11,12,13,14,15,16,17,18,19,10,21,22,23,24,25};
       
        //Int of smallest and largest numbers
        int smallest = numbers[0];
        int largest = numbers[0];

        for (int i=0; i<numbers.length; i++){
            //System.out.println("Input number "+(i+1));
            //numbers[i]=Integer.parseInt(io.readLine());

            if(numbers[i] > largest)
                largest = numbers[i];

            if (numbers[i]  < smallest)
                smallest = numbers[i];
        }

        System.out.println("Largest numbers is:"+ largest);
        System.out.println("Smallest numbers is:"+ smallest);

    }//end main
}//end class

Comments

Popular posts from this blog

Several English proverbs and the Malay pair

Or you could download here for the Malay proverbs app – https://play.google.com/store/apps/details?id=net.kerul.peribahasa English proverbs and the Malay pair Corpus Reference: Amir Muslim, 2009. Peribahasa dan ungkapan Inggeris-Melayu. DBP, Kuala Lumpur http://books.google.com.my/books/about/Peribahasa_dan_ungkapan_Inggeris_Melayu.html?id=bgwwQwAACAAJ CTRL+F to search Proverbs in English Definition in English Similar Malay Proverbs Definition in Malay 1 Where there is a country, there are people. A country must have people. Ada air adalah ikan. Ada negeri adalah rakyatnya. 2 Dry bread at home is better than roast meat home's the best hujan emas di negeri orang,hujan batu di negeri sendiri Betapa baik pun tempat orang, baik lagi tempat sendiri. 3 There's no accounting for tastes We can't assume that every people have a same feel Kepala sama hitam hati lain-lain. Dalam kehidupan ini, setiap insan berbeza cara, kesukaan, perangai, tabia

Bootstrap Template for PHP database system - MyCompanyHR

HTML without framework is dull. Doing hard-coded CSS and JS are quite difficult with no promising result on cross platform compatibility. So I decided to explore BootStrap as they said it is the most popular web framework. What is BootStrap? - Bootstrap is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first web sites. (  http://www.w3schools.com/bootstrap/   ) Available here -  http://getbootstrap.com/ Why you need Flat-UI? Seems like a beautiful theme to make my site look professional. Anyway you could get variety of BootStrap theme out there, feel free to select here  http://bootstraphero.com/the-big-badass-list-of-twitter-bootstrap-resources/ Flat-UI is from DesignModo -   http://designmodo.com/flat/ Web Programming MyCompanyHR – PHP & MySQL mini project (with Boostrap HTML framework) Template 1: Template for the Lab Exercise. This is a project sample of a staff record management system. It has the PHP structured co

Contact Us at blog.kerul.net

Powered by EMF HTML Contact Form

The Challenges of Handling Proverbs in Malay-English Machine Translation – a research paper

*This paper was presented in the 14th International Conference on Translation 2013 ( http://ppa14atf.usm.my/ ). 27 – 29 August 2013, Universiti Sains Malaysia, Penang. The PDF version is here: www.scribd.com/doc/163669571/Khirulnizam-The-Challenges-of-Automated-Detection-and-Translation-of-Malay-Proverb The test data is here: http://www.scribd.com/doc/163669588/Test-Data-for-the-Research-Paper-the-Challenges-of-Handling-Proverbs-in-Malay-English-Machine-Translation Khirulnizam Abd Rahman, Faculty of Information Science & Technology, KUIS Abstract: Proverb is a unique feature of Malay language in which a message or advice is not communicated indirectly through metaphoric phrases. However, the use of proverb will cause confusion or misinterpretation if one does not familiar with the phrases since they cannot be translated literally. This paper will discuss the process of automated filtering of Malay proverb in Malay text. The next process is translation. In machine translatio

Most used STRING functions in my PHP coding

These are my favourite string manipulation functions in my daily coding life. Dedicated especially to Web Programming students. Read them and have fun. Expect a happiness after a storm , and you’ll find your “inner peace”… This post is still in draft. I’ll update and refine with more examples that I’ve personally develop. More after the break…