1 / 27

Guidelines For Using BlueJ

Guidelines For Using BlueJ. Overview. Lecture: Using BlueJ Lab Exercise - Compiling and Running a simple program with BlueJ Lecture - Introduction to jar files and packages Lecture + Lab Exercise - Compiling and Running the Marine Biology Simulation using BlueJ. Using BlueJ.

teal
Télécharger la présentation

Guidelines For Using BlueJ

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Guidelines For Using BlueJ

  2. Overview • Lecture: Using BlueJ • Lab Exercise - Compiling and Running a simple program with BlueJ • Lecture - Introduction to jar files and packages • Lecture + Lab Exercise - Compiling and Running the Marine Biology Simulation using BlueJ

  3. Using BlueJ • Installing BlueJ • Creating a new BlueJ project • Creating a class file • Editing the class file using BlueJ • Opening the class file in the interface mode • Compiling the class file using BlueJ • Creating an instance of an object using BlueJ

  4. Using BlueJ: Installing BlueJ • BlueJ can be downloaded from http://www.bluej.org • J2SE SDK 5.0 can be downloaded from http://java.sun.com/j2se Installation on lap tops : In the open lab time from 6 to 10 pm

  5. Using BlueJ: Creating a new BlueJ Project (1 of 4) Open BlueJ from the Program Menu

  6. Using Blue J: Creating a new BlueJ Project (2 of 4) Left click on Project and then again left click on New Project

  7. Using BlueJ: Creating a new BlueJ Project (3 of 4) Enter the project name and left click on create

  8. Using BlueJ: Creating a new BlueJ Project (4 of 4) A new project is created !

  9. Using BlueJ: Creating a class file (1 of 2) Left click on New Class Enter class name in the new window Left click on Ok

  10. Using BlueJ: Creating a class file (2 of 2) A new class is created !

  11. Using BlueJ: Editing the class file ( 1 of 2) Right click on the class file and then left click on Open Editor

  12. Using BlueJ: Editing the class file ( 2 of 2) Implementation : Button to the right The file opens up !

  13. Using BlueJ: Opening the class file in the interface mode Interface : Button to the right The fish class documentation can be seen ! The documentation cannot be edited from here !

  14. Using BlueJ: Compiling the class file Right click on the class file and then left click on compile Indicates an uncompiled class

  15. Using BlueJ: Creating an instance of an object (1 of 3) The class file got compiled ! Indicates a compiled class Right click on class file and left click on new MyFish()

  16. Using BlueJ: Creating an instance of an object (2 of 3) Left click on Ok

  17. Using BlueJ: Creating an instance of an object (3 of 3) The set and get methods can invoked from here An instance is created !

  18. Overview • Lecture: Using BlueJ • Lab Exercise - Compiling and Running a simple program with BlueJ • Lecture - Introduction to jar files and packages • Lecture + Lab Exercise - Compiling and Running the Marine Biology Simulation using BlueJ

  19. Lab Exercise - Compiling and Running a simple program with BlueJ • Use the BankAccount class from Example1.html. Complete the code. Compile it. Create an instance and check if the deposit(double amount) and withdraw(double amount) and getBalance() methods work correctly – Solution is BankAccount.java • Use the BankAccount class from Example2.html. Complete the code. Compile it. Create an instance and check if the getRate() method works correctly. – Solution is BankAccountStatic.java • These programs can be tested using Driver.java

  20. Overview • Lecture: Using BlueJ • Lab Exercise - Compiling and Running a simple program with BlueJ • Lecture - Introduction to jar files and packages • Lecture + Lab Exercise - Compiling and Running the Marine Biology Simulation using BlueJ

  21. Introduction to jar files and packages Taken as is from: Sections 4.3 and 5.5 of Objects First with Java-A Practical Introduction Using Blue J – David J. Barnes and Michael Kolling (1 of 2) • Java calls its class libraries “PACKAGES” • Libraries typically contain many hundreds or thousands of different classes that are useful to developers • Java uses packages to arrange library classes into groups that belong together Complete packages can be imported using import package-name.* A specific class can be imported using the full name. For example import java.util.Random

  22. Introduction to jar files and packages First 3 points taken as is from: Appendix E2 of Objects First with Java-A Practical Introduction Using Blue J – David J. Barnes and Michael Kolling (2 of 2) • Java applications are usually distributed as Java Archive format files (JAR files) • A number of different class files are archived into a single file • A JAR file can be created as an executable file • Tutorial on jar files : http://java.sun.com/docs/books/tutorial/jar/

  23. Overview • Lecture: Using BlueJ • Lab Exercise - Compiling and Running a simple program with BlueJ • Lecture - Introduction to jar files and packages • Lecture + Lab Exercise - Compiling and Running the Marine Biology Simulation using BlueJ

  24. Compiling the Marine Biology Simualtion using BlueJ (1 of 4) • Website reference: http://www.bluej.org/help/ap.html CONCEPT All the jar files should be in +libs folder The jar files in this project are mbsbb.jar and mbsgui.jar

  25. Compiling the Marine Biology Simualtion using BlueJ (2 of 4) [taken as is from bluej website] • Delete the 'Code' folder inside the JavaMBS folder. • Replace it with the BlueJ_Code folder downloaded from • http://www.bluej.org/help/ap.html

  26. Compiling the Marine Biology Simualtion using BlueJ (3 of 4 ) Directories in BlueJ_Code

  27. Compiling the Marine Biology Simualtion using BlueJ – (4 of 4) • Run MBSGUI from Chap1and2MBSGUI • Folder • Open project Chap1and2MBSGUI (It has been already compiled) • Right click on MBSGUI and left click on void main (String [] args) • Hit Ok on the method call • Then on the simulation screen open a file called fish.dat • Click run on the simulation screen and observe the simulation

More Related