Difference between revisions of "Setup Aplikasi Project di NetBeans"

From OnnoWiki
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Membuat Java Class Library Project==
 
==Membuat Java Class Library Project==
  
  1.  Choose File > New Project (Ctrl-Shift-N). Under Categories, select Java. Under Projects, select Java Class Library. Click Next.
+
# Pilih File -> New Project (Ctrl-Shift-N). Di bawah Categories, pilih Java. Di bawah Projects, pilih Java Class Library. Klik Next.
  2. Under Project Name, type MyLib. Change the Project Location to any directory on your computer. From now on, this tutorial refers to this directory as NetBeans_projects.
+
# Di bawah Project Name, tulis MyLib. Project Location merupakan directory di komputer anda. Biasanya di /home/usernameanda/NetBeansProjects. Yang selanjutnya akan kita sebut sebagai NetBeans_projects. MyLib akan terlihat sebagai folder di /NetBeans_projects/MyLib/
 
+
# Sebagai pilihan tambahan, kita dapat menggunakan folder khusus untuk menyimpan Library yang kita kembangkan dengan cara meng-klik pada "Use Dedicated Folder for Storing Libraries".
      Note: The path specified above should appear as follows in the Project Folder field of the wizard: /NetBeans_projects/MyLib/
+
# Klik Finish. MyLib project akan di buka di Projects window dan Files window.
  3. (Optional) Select the Use Dedicated Folder for Storing Libraries checkbox and specify the location for the libraries folder. See Sharing Project Libraries for more information on this option.
 
  4. Click Finish. The MyLib project opens in both the Projects window and the Files window.
 
 
 
  
  
 
==Membuat Java Application Project==
 
==Membuat Java Application Project==
  
 
+
# Pilih File -> New Project. Di bawah Categories, pilih Java. Di bawah Projects, pilih Java Application. Klik Next.
  1.  Choose File > New Project. Under Categories, select Java. Under Projects, select Java Application. Click Next.
+
# Di bawah Project name, tulis MyApp. Pastikan bahwa Project Location di set ke NetBeans_projects sama dengan sebelumnya.
  2. Under Project Name, type MyApp. Make sure the Project Location is set to NetBeans_projects.
+
# Sebagai pilihan tambahan, jika di inginkan, kita dapat memilih untuk "Use Dedicated Folder for Storing Libraries".
  3. (Optional) Check the Use Dedicated Folder for Storing Libraries checkbox.
+
# Masukan acrostic.Main sebagai [[main class]]
  4. Enter acrostic.Main as the main class.
+
# Pastikan bahwa Main Project dan Create Main Class di set / di cek.
  5. Ensure that the Set as Main Project and Create Main Class checkboxes are checked.
+
# Klik Finish. MyApp project akan di tampilkan pada Project window dan Main.java akan di buka di Source Editor.
  6. Click Finish. The MyApp project is displayed in the Project window and Main.java opens in the Source Editor.
 
 
 
 
 
  
  
 
==Konfigurasi Classpath untuk Kompilasi==
 
==Konfigurasi Classpath untuk Kompilasi==
  
 +
Karena MyApp akan tergantung pada class di MyLib, kita perlu menambahkan MyLib ke classpath dari MyApp. Hal tersebut akan menjamin bahwa class dari MyApp project dapat menggunakan class dari MyLib project tanpa harus mengalami kesalahan pada kompilasi. Lebih lanjut, hal ini memungkinkan kita untuk menggunakan code yang di compile di MyApp project pada MyLib project. Di NetBeans, classpath secara visual di perlihatkan di node Libraries.
  
Since MyApp is going to depend on a class in MyLib, you have to add MyLib to the classpath of MyApp. Doing so also ensures that classes in the MyApp project can refer to classes in the MyLib project without causing compilation errors. In addition, this enables you to use code completion in the MyApp project to fill in code based on the MyLib project. In the IDE, the classpath is visually represented by the Libraries node.
+
Untuk menambahkan
  
 
To add the library's utility classes to the project classpath:
 
To add the library's utility classes to the project classpath:

Latest revision as of 08:07, 28 May 2009

Membuat Java Class Library Project

  1. Pilih File -> New Project (Ctrl-Shift-N). Di bawah Categories, pilih Java. Di bawah Projects, pilih Java Class Library. Klik Next.
  2. Di bawah Project Name, tulis MyLib. Project Location merupakan directory di komputer anda. Biasanya di /home/usernameanda/NetBeansProjects. Yang selanjutnya akan kita sebut sebagai NetBeans_projects. MyLib akan terlihat sebagai folder di /NetBeans_projects/MyLib/
  3. Sebagai pilihan tambahan, kita dapat menggunakan folder khusus untuk menyimpan Library yang kita kembangkan dengan cara meng-klik pada "Use Dedicated Folder for Storing Libraries".
  4. Klik Finish. MyLib project akan di buka di Projects window dan Files window.


Membuat Java Application Project

  1. Pilih File -> New Project. Di bawah Categories, pilih Java. Di bawah Projects, pilih Java Application. Klik Next.
  2. Di bawah Project name, tulis MyApp. Pastikan bahwa Project Location di set ke NetBeans_projects sama dengan sebelumnya.
  3. Sebagai pilihan tambahan, jika di inginkan, kita dapat memilih untuk "Use Dedicated Folder for Storing Libraries".
  4. Masukan acrostic.Main sebagai main class
  5. Pastikan bahwa Main Project dan Create Main Class di set / di cek.
  6. Klik Finish. MyApp project akan di tampilkan pada Project window dan Main.java akan di buka di Source Editor.


Konfigurasi Classpath untuk Kompilasi

Karena MyApp akan tergantung pada class di MyLib, kita perlu menambahkan MyLib ke classpath dari MyApp. Hal tersebut akan menjamin bahwa class dari MyApp project dapat menggunakan class dari MyLib project tanpa harus mengalami kesalahan pada kompilasi. Lebih lanjut, hal ini memungkinkan kita untuk menggunakan code yang di compile di MyApp project pada MyLib project. Di NetBeans, classpath secara visual di perlihatkan di node Libraries.

Untuk menambahkan

To add the library's utility classes to the project classpath:

  1. In the Projects window, right-click the Libraries node for the MyApp project and choose Add Project as shown in the image below.
     Image showing the Add Project command that is offered when you right-click a project's node.
  2. Browse to NetBeans_projects/ and select the MyLib project folder. The Project JAR Files pane shows the JAR files that can be added to the project. Notice that a JAR file for MyLib is listed even though you have not actually built the JAR file yet. This JAR file will get built when you build and run the MyApp project.
  3. Click Add Project JAR Files.
  4. Expand the Libraries node. The MyLib project's JAR file is added to the MyApp project's classpath.




Pranala Menarik