Difference between revisions of "Eclipse: Tutorial Penggunaan"

From OnnoWiki
Jump to navigation Jump to search
 
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
Sumber: http://www.vogella.de/articles/Eclipse/article.html
 +
 
Tutorial ini menjelaskan penggunaan Eclipse sebagai IDE Java. Tutorial ini menjelaskan cara instalasi Eclipse, pembuatan program Java dan tip penggunaan Eclipse. Tutorial ini berbasis pada Eclipse 3.7 (Indigo)
 
Tutorial ini menjelaskan penggunaan Eclipse sebagai IDE Java. Tutorial ini menjelaskan cara instalasi Eclipse, pembuatan program Java dan tip penggunaan Eclipse. Tutorial ini berbasis pada Eclipse 3.7 (Indigo)
  
Line 35: Line 37:
 
===Workspace===
 
===Workspace===
  
The workspace is the physical location (file path) you are working in. You can choose the workspace during startup of eclipse or via the menu (File-> Switch Workspace-> Others). All your projects, sources files, images and other artifacts will be stored and saved in your workspace.
+
Workspace adalah lokasi fisik (folder) tempat kita bekerja. Kita dapat memilih workspace saat menjalankan eclipse atau melalui menu (File-> Switch Workspace-> Others). Semua projects, file source, image dan berbagai file akan di simpan di workspace tersebut.
 +
 
 +
Kita dapat mendefinisikan workspace melalui startup parameter -data pathworkspace, misalnya, "/home/user/workspace" sehingga "eclipse -data "/home/user/workspace" Perhatikan bahwa kita harus menulis nama path dalam bracket. Untuk melihat directory workspace di judul Eclipse gunakan parameter  -showLocation saat menjalankan eclipse.
 +
 
 +
===Perspective===
 +
 
 +
Sebuah perspective adalah sebuah visual container untuk sekumpulan view dan editor. Kita dapat mengubah layout dalam perspective (close / open view, editor, ubah size, change posisi, dll). Eclipse memungkinkan kita untuk switch ke perspective lain melalui menu Window->Open Perspective -> Other. Untuk Java development kita biasanya menggunakan "Java Perspective".
  
You can predefine the workspace via the startup parameter -data path_to_workspace, e.g. "c:\eclipse.exe -data "c:\temp" Please note that you have to put the path name into brackets. To see the current workspace directory in the title of Eclipse use -showLocation as additional parameter.
+
====Tip====
3.2. Perspective
+
Masalah umum jika kita menutup sebuah view dan tidak tahu bagaimana cara membuka kembali view.
 +
Kita dapat mereset sebuah perspective ke kondisi original melalui menu "Window" -> "Reset Perspective".
  
A perspective is a visual container for a set of views and editors. You can change the layout within a perspective (close / open views, editors, change the size, change the position, etc.). Eclipse allow you to switch to another perspective via the menu Window->Open Perspective -> Other. For Java development you usually use the "Java Perspective".
+
===View dan Editor===
  
Tip
+
View biasanya digunakan untuk melakukan navigasi dalam sebuah hirarki informasi atau membuka sebuah editor. Perubahan di view akan berpengaruh pada struktur data di bawahnya. Editor digunakan untuk memodifikasi elemen. Editor dapat melakukan compile code, undo, redo dll. Untuk melakukan perubahan di editor ke sumber daya di bawahnya, seperti, source file java, kita biasanya perlu men-save.
A common problem is that you closed a view and don't know how to re-open this view. You can reset a perpective it to it original state via the menu "Window" -> "Reset Perspective".
 
  
3.3. Views and Editors
 
  
A view is typically used to navigate a hierarchy of information or to open an editor. Changes in a view are directly applied to the underlying data structure. Editors are used to modify elements. Editors can have code completion, undo / redo, etc. To apply the changes in an editor to the underlying resources, e.g. Java source file, you usually have to save.
+
==Membuat Program Java Pertama==
4. Create your first Java program
 
  
The following will describe how to create a minimal Java program using Eclipse. It will be the classical "Hello World" program. Our program will write "Hello Eclipse!" to the console.
+
Berikut akan di terangkan bagaimana cara membuat program java minimal menggunakan Eclipse. Program ini adalah program klasik "Hello World". Program ini akan menulis "Hello Eclipse!" ke console.
4.1. Create project
 
  
Select from the menu File -> New-> Java project. Maintain "de.vogella.eclipse.ide.first" as the project name. Select "Create separate source and output folders".
+
===Membuat Project===
  
Press finish to create the project. A new project is created and displayed as a folder. Open the folder "de.vogella.eclipse.ide.first"
+
Pilih dari menu File -> New-> Java project. Simpan "de.vogella.eclipse.ide.first" sebagai project name. Pilih "Create separate source and output folders".
4.2. Create package
 
  
Create now a package. A good convention is to use the same name for the top package as the project. Create therefore the package "de.vogella.eclipse.ide.first".
+
Tekan Finish untuk membuat project. Sebuah project baru akan dibuat dan di tampilkan sebagai folder. Buka folder "de.vogella.eclipse.ide.first"
  
Select the folder src, right mouse click on it and select New -> Package.
+
===Buat Package===
  
4.3. Create Java class
+
Sekarang buat package. Konvensi / cara yang baik adalah menggunakan nama yang sama dengan top package pada project. Oleh karenanya nama package adalah "de.vogella.eclipse.ide.first".
  
Right click on your package and select New -> Class
+
Pilih folder src, klik kanan pada mouse dan pilih New -> Package. Tekan Finish setelah nama package di tentukan.
  
Create MyFirstClass, select the flag "public static void main (String[] args)"
+
===Membuat Java class===
  
Maintain the following code.
+
Klik kanan pada package dan pilih New -> Class.
  
 +
Buat MyFirstClass, pilih Modifier public. Pilih flag "public static void main (String[] args)". Jika sudah maka tekan Finish.
 +
 +
Tuliskan code berikut.
 
 
package de.vogella.eclipse.ide.first;
+
package de.vogella.eclipse.ide.first;
 +
 +
public class MyFirstClass {
 +
 +
public static void main(String[] args) {
 +
System.out.println("Hello Eclipse!");
 +
}
 +
 +
}
 +
 +
 
 +
===Jalankan project di Eclipse===
 +
 
 +
Sekarang jalankan source code anda. Klik kanan pada Java class dan pilih Run-as-> Java application
 +
 
 +
Selesai! Kita harusnya dapat melihat keluaran di console.
 +
 
  
public class MyFirstClass {
+
===Jalankan Java program di luar Eclipse (membuat file jar)===
  
public static void main(String[] args) {
+
Untuk menjalankan sebuah program java di luar Eclipse kita perlu meng-export-nya menjadi file jar.
System.out.println("Hello Eclipse!");
+
Pilih project anda, klik kanan dan pilih "Export" -> Java -> Runnable JAR file -> Next.
}
+
Pilih project anda dan isikan nama file jar. Dalam contoh ini file tersebut bernama "myprogram.jar".
  
}
+
Tekan Finish. Ini akan membuat file jar di directory keluaran yang anda pilih.
+
 
 +
===Menjalankan program di luar Eclipse===
  
4.4. Run your project in Eclipse
+
Buka terminal / shell
  
Now run your code. Right click on your Java class and select Run-as-> Java application
+
Pindah ke directory output yang di tentukan
  
Finished! You should see the output in the console.
+
cd outputdirectory
 +
chmod -Rf 777 myprogram.jar
 +
./myprogram.jar
  
4.5. Run your Java program outside Eclipse (create jar file)
+
Harusnya keluar
  
To run your Java program outside of Eclipse you need to export it as a jar file. Select your project, right click on it and select "Export".
+
Hello Eclipse!
  
Select JAR file, select next. Select your project and maintain the export destination and a name for the jar file. I named it "myprogram.jar".
+
==Referensi==
  
Press finish. This will create a jar file in your select output directory.
+
* http://www.vogella.de/articles/Eclipse/article.html
4.6. Run your program outside Eclipse
 
  
Open a command shell, e.g. under Microsoft Windows select Start -> Run and type in cmd. This should open a consle.
+
==Pranala Menarik==
  
Switch to your output directory, e.g. by typing cd path, e.g. if you jar is located in "c:\temp" type "cd c
+
* [[Pemrogramman Android]]

Latest revision as of 12:20, 3 September 2011

Sumber: http://www.vogella.de/articles/Eclipse/article.html

Tutorial ini menjelaskan penggunaan Eclipse sebagai IDE Java. Tutorial ini menjelaskan cara instalasi Eclipse, pembuatan program Java dan tip penggunaan Eclipse. Tutorial ini berbasis pada Eclipse 3.7 (Indigo)

Eclipse Secara Umum

Umumnya kita mengetahui Eclipse sebagai Integrated Development Environment (IDE) untuk Java. Eclipse dibuat oleh komunitas Open Source dan digunakan di beberapa hal, seperti, development environment untuk Java atau Android atau platform untuk aplikasi RCP Eclipse.

Penggunaan Eclipse sebagai Java Development Environment akan di terangkan di tutorial ini.


Memulai

Instalasi Eclipse

Instalasi Eclipse sangat mudah

apt-get install eclipse

Lumayan besar hampir 400Mbyte :) ...

Start Eclipse

Untuk menjalankan Eclipse ketik / double klik pada

eclipse

di shell. System akan menanyakan dimana lokasi workspace. Workspace adalah tempat dimana kita dapat menyimpan project Java. Pilih directory kosong dan tekan OK.

Eclipse akan jalan dan akan memperlihatkan Welcome page. Tutup welcome page dengan menekan "X" sebelah "Welcome".


UI Eclipse Secara Umum

Eclipse memberikan perspectie, view dan editor. View dan editor di group dalam perspective. Semua project akan tersimpan di workspace.

Workspace

Workspace adalah lokasi fisik (folder) tempat kita bekerja. Kita dapat memilih workspace saat menjalankan eclipse atau melalui menu (File-> Switch Workspace-> Others). Semua projects, file source, image dan berbagai file akan di simpan di workspace tersebut.

Kita dapat mendefinisikan workspace melalui startup parameter -data pathworkspace, misalnya, "/home/user/workspace" sehingga "eclipse -data "/home/user/workspace" Perhatikan bahwa kita harus menulis nama path dalam bracket. Untuk melihat directory workspace di judul Eclipse gunakan parameter -showLocation saat menjalankan eclipse.

Perspective

Sebuah perspective adalah sebuah visual container untuk sekumpulan view dan editor. Kita dapat mengubah layout dalam perspective (close / open view, editor, ubah size, change posisi, dll). Eclipse memungkinkan kita untuk switch ke perspective lain melalui menu Window->Open Perspective -> Other. Untuk Java development kita biasanya menggunakan "Java Perspective".

Tip

Masalah umum jika kita menutup sebuah view dan tidak tahu bagaimana cara membuka kembali view.
Kita dapat mereset sebuah perspective ke kondisi original melalui menu "Window" -> "Reset Perspective".

View dan Editor

View biasanya digunakan untuk melakukan navigasi dalam sebuah hirarki informasi atau membuka sebuah editor. Perubahan di view akan berpengaruh pada struktur data di bawahnya. Editor digunakan untuk memodifikasi elemen. Editor dapat melakukan compile code, undo, redo dll. Untuk melakukan perubahan di editor ke sumber daya di bawahnya, seperti, source file java, kita biasanya perlu men-save.


Membuat Program Java Pertama

Berikut akan di terangkan bagaimana cara membuat program java minimal menggunakan Eclipse. Program ini adalah program klasik "Hello World". Program ini akan menulis "Hello Eclipse!" ke console.

Membuat Project

Pilih dari menu File -> New-> Java project. Simpan "de.vogella.eclipse.ide.first" sebagai project name. Pilih "Create separate source and output folders".

Tekan Finish untuk membuat project. Sebuah project baru akan dibuat dan di tampilkan sebagai folder. Buka folder "de.vogella.eclipse.ide.first"

Buat Package

Sekarang buat package. Konvensi / cara yang baik adalah menggunakan nama yang sama dengan top package pada project. Oleh karenanya nama package adalah "de.vogella.eclipse.ide.first".

Pilih folder src, klik kanan pada mouse dan pilih New -> Package. Tekan Finish setelah nama package di tentukan.

Membuat Java class

Klik kanan pada package dan pilih New -> Class.

Buat MyFirstClass, pilih Modifier public. Pilih flag "public static void main (String[] args)". Jika sudah maka tekan Finish.

Tuliskan code berikut.

package de.vogella.eclipse.ide.first;

public class MyFirstClass {

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

}


Jalankan project di Eclipse

Sekarang jalankan source code anda. Klik kanan pada Java class dan pilih Run-as-> Java application

Selesai! Kita harusnya dapat melihat keluaran di console.


Jalankan Java program di luar Eclipse (membuat file jar)

Untuk menjalankan sebuah program java di luar Eclipse kita perlu meng-export-nya menjadi file jar. Pilih project anda, klik kanan dan pilih "Export" -> Java -> Runnable JAR file -> Next. Pilih project anda dan isikan nama file jar. Dalam contoh ini file tersebut bernama "myprogram.jar".

Tekan Finish. Ini akan membuat file jar di directory keluaran yang anda pilih.

Menjalankan program di luar Eclipse

Buka terminal / shell

Pindah ke directory output yang di tentukan

cd outputdirectory
chmod -Rf 777 myprogram.jar 
./myprogram.jar 

Harusnya keluar

Hello Eclipse!

Referensi

Pranala Menarik