SlideShare uma empresa Scribd logo
1 de 29
Mobile Programming with J2ME
               By Oluwatosin Adesanya
Lesson 01:
Basic Java Programming
Java is ...
     •   A Pure OOP Language
     •   A Hybrid Programming Language
     •   First Compiled and Interpreted
     •   Runs on a JVM (Java Virtual Machine)



                      Byte Code




Source                                          Object
 Code                                           Code
Getting Started

• JDK (Java Development Kit)
• Editor (Notepad) OR ...
• Integrated Development Environment (Netbeans, Eclipse,
  JCreator etc.)
Setting Up Java

• Install the JDK
• The JDK Sits in C:Program FilesJavajdk1.6.0
• Set the PATH Environmental Variable (How?)
Setting the PATH Environmental Variable

Open your Systems Property: choose Advanced System Settings, Click
the Environmental Variable Button on the Dialog that shows Up
Setting the PATH Environmental Variable

Scroll and Select Path , Click Edit Button
Setting the PATH Environmental Variable

Append the current path with the path to the Java bin folder
Running Java

• Save your Java source code as a .java file
• Use the javac Command to compile your source codes (.java files)
  e.g javac Result.java
• A .class file is generated called a bytecode
• Use java Command to run the .class file e.g java Result
• Do not add .class when compiling




      Source                                          Object
                  javac     Byte Code     java
       Code                                           Code
The Structure of a Java Program

• Java Programs are made up of classes
• Classes are made up of methods
• Java existing (ready-made) classes are found in the Java Class
  Libraries (Also Called Java APIs)
• Execution of Java programs begin at the main method
A Simple Java Program


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

• A Class is like a factory from which Objects are churned Out.

   Example
   Class Car could produce objects Volkswagen bettles, Toyota Camri,
   Peugeout 306

   An Object is a model of the Real World and has
   States (Or Properties) and
   Behaviours (Or Actions)

   Example
   Object Car States are Color, Speed, Size, Plate Licence No, Cost
   Behaviours are Start, Stop, Accelerate, Fuel, Open Door, etc.
Creating a Class

Use the class Keyword

Example
public class HelloWorld {
          .
          .
          .
    }

Do NOT Forget!
Name your java file ClassName.java
Adding States (Properties)

• States in Java are simply variables (Otherwise called fields)

   Example

   public class PaySlip {
       int numdone;
       String name;
   }


   Observe?!
   Every Line of Java code ends with a semicolon (;)

  int,float, double,
  boolean, char … are Java Primitive Types
Adding Behaviours (Methods)

•   Methods are functions that control states or fields or variables. They
    change the state of an object.

    Example

    public class PaySlip {
        int numdone;
        String name;

         public double getPay() {
               return 40.00 * numdone;
         }
                                                         Method getPay()
    }


    Guess What? We already have a working Java Class!
Using Our Class PaySlip

We implement another tester class which
contains the main method.


public class TestPaySlip {
      public static void main(String[] args){
            PaySlip opay=new PaySlip();
            System.out.println("n"+opay.getPay());
      }
}
Constructors

•   Initializes the Object after memory allocation
•   Takes the same name as the Class
•   May accept parameters OR... may not
•   Every Class has a default constructor that accepts no parameter
•   Has No Return Type
•   Can be Overloaded (there can be multiple Constructors)
Constructors
public class PaySlip {
   int numdone;
   String name;

    public PaySlip(int numdone, String name) {
        this.numdone=numdone; this.name=name;
    }

    public PaySlip(){
        name=“Nobody”;
        numdone=0;
    }

    public double getPay() {
        return 40.00 * numdone;
    }
}
Sorry...



• Confused?
• Questions?
Lesson 02:
Java 2 Micro Edition(J2ME)
J2ME is ...

•   Java for small devices
•   Divided into Configurations, Profiles and Optional APIs

    Configurations, Profiles and Optional APIs combined together make up
    a stack

    Configurations: Specifies a JVM. We have CDC and CLDC

    CLDC (Connected Limited Device Configuration) is designed for
    devices with limited memory, displays, battery power and inputs.

    Profiles: Layered on top of CLDC and adds APIs for specific devices.
    We have MIDP, PDAP and Personal Profiles

    MIDP (Mobile Information Device Profile) has characteristics that makes
    most low end phones and PDAs fit in. J2ME is covered by MIDPs
Anatomy of MIDP Apps
MIDP Apps are ...

• Called MIDlets
• Portable
• Secured
• represented by instances of
  javax.microedition.midlet.MIDlet class
• Distributed as JAR (Java Archive) files along with a MANIFEST file
  and an Application Descriptor File (.jad file)
• Reduced to small sizes before distribution by an Obfuscator




    Popular J2ME Apps: Opera Mini, 2go, Go Bible
The MIDlet Life Cycle
Shall We Create a MIDlet?

package com.thinkit2ru;

import javax.microedition.midlet.*;

public class Metric extends MIDlet {

    public void startApp() {
    }

    public void pauseApp() {
    }

    public void destroyApp(boolean unconditional) {
    }
}
Remember the Constructor?
package com.thinkit2ru;

import javax.microedition.midlet.*;

public class Metric extends MIDlet {

    public Metric() {          The Contructor:
    }                          Build Components Here
    public void startApp() {
    }

    public void pauseApp() {
    }

    public void destroyApp(boolean unconditional) {
    }
}
You need to Know...

•   Primitive data types
•   String Manipulation
•   Control Statements
•   Arrays and other data structures
•   GUI Design
•   Database Connectivity
•   Multithreading
•   Ethics and Conventions
Questions Please...
System.out.println(“Thank You”);

Mais conteúdo relacionado

Mais procurados

Java tutorials
Java tutorialsJava tutorials
Java tutorials
saryu2011
 
Manuel - SPR - Intro to Java Language_2016
Manuel - SPR - Intro to Java Language_2016Manuel - SPR - Intro to Java Language_2016
Manuel - SPR - Intro to Java Language_2016
Manuel Fomitescu
 

Mais procurados (20)

Core Java Tutorial
Core Java TutorialCore Java Tutorial
Core Java Tutorial
 
Core java
Core javaCore java
Core java
 
Core java
Core java Core java
Core java
 
Java Tutorial
Java TutorialJava Tutorial
Java Tutorial
 
1_JavIntro
1_JavIntro1_JavIntro
1_JavIntro
 
Collection Framework in Java | Generics | Input-Output in Java | Serializatio...
Collection Framework in Java | Generics | Input-Output in Java | Serializatio...Collection Framework in Java | Generics | Input-Output in Java | Serializatio...
Collection Framework in Java | Generics | Input-Output in Java | Serializatio...
 
Java tutorials
Java tutorialsJava tutorials
Java tutorials
 
Java tutorials
Java tutorialsJava tutorials
Java tutorials
 
Java basic part 2 : Datatypes Keywords Features Components Security Exceptions
Java basic part 2 : Datatypes Keywords Features Components Security Exceptions Java basic part 2 : Datatypes Keywords Features Components Security Exceptions
Java basic part 2 : Datatypes Keywords Features Components Security Exceptions
 
Java 201 Intro to Test Driven Development in Java
Java 201   Intro to Test Driven Development in JavaJava 201   Intro to Test Driven Development in Java
Java 201 Intro to Test Driven Development in Java
 
Java 101 Intro to Java Programming
Java 101 Intro to Java ProgrammingJava 101 Intro to Java Programming
Java 101 Intro to Java Programming
 
Basic java for Android Developer
Basic java for Android DeveloperBasic java for Android Developer
Basic java for Android Developer
 
Synapseindia reviews.odp.
Synapseindia reviews.odp.Synapseindia reviews.odp.
Synapseindia reviews.odp.
 
Java for the Beginners
Java for the BeginnersJava for the Beginners
Java for the Beginners
 
Core Java introduction | Basics | free course
Core Java introduction | Basics | free course Core Java introduction | Basics | free course
Core Java introduction | Basics | free course
 
New Features Of JDK 7
New Features Of JDK 7New Features Of JDK 7
New Features Of JDK 7
 
Core java Basics
Core java BasicsCore java Basics
Core java Basics
 
Intro to Object Oriented Programming with Java
Intro to Object Oriented Programming with Java Intro to Object Oriented Programming with Java
Intro to Object Oriented Programming with Java
 
Manuel - SPR - Intro to Java Language_2016
Manuel - SPR - Intro to Java Language_2016Manuel - SPR - Intro to Java Language_2016
Manuel - SPR - Intro to Java Language_2016
 
Introduction to java 101
Introduction to java 101Introduction to java 101
Introduction to java 101
 

Semelhante a Java Programming and J2ME: The Basics

JavaClassPresentation
JavaClassPresentationJavaClassPresentation
JavaClassPresentation
juliasceasor
 
Fundamentals of java --- version 2
Fundamentals of java --- version 2Fundamentals of java --- version 2
Fundamentals of java --- version 2
Uday Sharma
 

Semelhante a Java Programming and J2ME: The Basics (20)

oop unit1.pptx
oop unit1.pptxoop unit1.pptx
oop unit1.pptx
 
CS8392 OOP
CS8392 OOPCS8392 OOP
CS8392 OOP
 
1 java programming- introduction
1  java programming- introduction1  java programming- introduction
1 java programming- introduction
 
Java For beginners and CSIT and IT students
Java  For beginners and CSIT and IT studentsJava  For beginners and CSIT and IT students
Java For beginners and CSIT and IT students
 
Pj01 2-install java and write first java program
Pj01 2-install java and write first java programPj01 2-install java and write first java program
Pj01 2-install java and write first java program
 
Module 1.pptx
Module 1.pptxModule 1.pptx
Module 1.pptx
 
Introduction to java
Introduction to java Introduction to java
Introduction to java
 
ITFT - Java Coding
ITFT - Java CodingITFT - Java Coding
ITFT - Java Coding
 
Java introduction
Java introductionJava introduction
Java introduction
 
JavaClassPresentation
JavaClassPresentationJavaClassPresentation
JavaClassPresentation
 
Java Programming concept
Java Programming concept Java Programming concept
Java Programming concept
 
Letest
LetestLetest
Letest
 
02 basic java programming and operators
02 basic java programming and operators02 basic java programming and operators
02 basic java programming and operators
 
Java Programming
Java ProgrammingJava Programming
Java Programming
 
Fundamentals of java --- version 2
Fundamentals of java --- version 2Fundamentals of java --- version 2
Fundamentals of java --- version 2
 
Object Oriented Programming-JAVA
Object Oriented Programming-JAVAObject Oriented Programming-JAVA
Object Oriented Programming-JAVA
 
OOP with Java
OOP with JavaOOP with Java
OOP with Java
 
Java part 1
Java part 1Java part 1
Java part 1
 
Java
JavaJava
Java
 
Introduction to java programming part 1
Introduction to java programming   part 1Introduction to java programming   part 1
Introduction to java programming part 1
 

Último

會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
中 央社
 
ppt your views.ppt your views of your college in your eyes
ppt your views.ppt your views of your college in your eyesppt your views.ppt your views of your college in your eyes
ppt your views.ppt your views of your college in your eyes
ashishpaul799
 
IATP How-to Foreign Travel May 2024.pdff
IATP How-to Foreign Travel May 2024.pdffIATP How-to Foreign Travel May 2024.pdff
IATP How-to Foreign Travel May 2024.pdff
17thcssbs2
 

Último (20)

Post Exam Fun(da) Intra UEM General Quiz - Finals.pdf
Post Exam Fun(da) Intra UEM General Quiz - Finals.pdfPost Exam Fun(da) Intra UEM General Quiz - Finals.pdf
Post Exam Fun(da) Intra UEM General Quiz - Finals.pdf
 
Features of Video Calls in the Discuss Module in Odoo 17
Features of Video Calls in the Discuss Module in Odoo 17Features of Video Calls in the Discuss Module in Odoo 17
Features of Video Calls in the Discuss Module in Odoo 17
 
BỘ LUYỆN NGHE TIẾNG ANH 8 GLOBAL SUCCESS CẢ NĂM (GỒM 12 UNITS, MỖI UNIT GỒM 3...
BỘ LUYỆN NGHE TIẾNG ANH 8 GLOBAL SUCCESS CẢ NĂM (GỒM 12 UNITS, MỖI UNIT GỒM 3...BỘ LUYỆN NGHE TIẾNG ANH 8 GLOBAL SUCCESS CẢ NĂM (GỒM 12 UNITS, MỖI UNIT GỒM 3...
BỘ LUYỆN NGHE TIẾNG ANH 8 GLOBAL SUCCESS CẢ NĂM (GỒM 12 UNITS, MỖI UNIT GỒM 3...
 
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdfINU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
 
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT VẬT LÝ 2024 - TỪ CÁC TRƯỜNG, TRƯ...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT VẬT LÝ 2024 - TỪ CÁC TRƯỜNG, TRƯ...TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT VẬT LÝ 2024 - TỪ CÁC TRƯỜNG, TRƯ...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT VẬT LÝ 2024 - TỪ CÁC TRƯỜNG, TRƯ...
 
size separation d pharm 1st year pharmaceutics
size separation d pharm 1st year pharmaceuticssize separation d pharm 1st year pharmaceutics
size separation d pharm 1st year pharmaceutics
 
The Ball Poem- John Berryman_20240518_001617_0000.pptx
The Ball Poem- John Berryman_20240518_001617_0000.pptxThe Ball Poem- John Berryman_20240518_001617_0000.pptx
The Ball Poem- John Berryman_20240518_001617_0000.pptx
 
Behavioral-sciences-dr-mowadat rana (1).pdf
Behavioral-sciences-dr-mowadat rana (1).pdfBehavioral-sciences-dr-mowadat rana (1).pdf
Behavioral-sciences-dr-mowadat rana (1).pdf
 
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...
 
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
 
Removal Strategy _ FEFO _ Working with Perishable Products in Odoo 17
Removal Strategy _ FEFO _ Working with Perishable Products in Odoo 17Removal Strategy _ FEFO _ Working with Perishable Products in Odoo 17
Removal Strategy _ FEFO _ Working with Perishable Products in Odoo 17
 
How to Manage Closest Location in Odoo 17 Inventory
How to Manage Closest Location in Odoo 17 InventoryHow to Manage Closest Location in Odoo 17 Inventory
How to Manage Closest Location in Odoo 17 Inventory
 
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
 
ppt your views.ppt your views of your college in your eyes
ppt your views.ppt your views of your college in your eyesppt your views.ppt your views of your college in your eyes
ppt your views.ppt your views of your college in your eyes
 
Post Exam Fun(da) Intra UEM General Quiz 2024 - Prelims q&a.pdf
Post Exam Fun(da) Intra UEM General Quiz 2024 - Prelims q&a.pdfPost Exam Fun(da) Intra UEM General Quiz 2024 - Prelims q&a.pdf
Post Exam Fun(da) Intra UEM General Quiz 2024 - Prelims q&a.pdf
 
An Overview of the Odoo 17 Discuss App.pptx
An Overview of the Odoo 17 Discuss App.pptxAn Overview of the Odoo 17 Discuss App.pptx
An Overview of the Odoo 17 Discuss App.pptx
 
IATP How-to Foreign Travel May 2024.pdff
IATP How-to Foreign Travel May 2024.pdffIATP How-to Foreign Travel May 2024.pdff
IATP How-to Foreign Travel May 2024.pdff
 
Word Stress rules esl .pptx
Word Stress rules esl               .pptxWord Stress rules esl               .pptx
Word Stress rules esl .pptx
 
Incoming and Outgoing Shipments in 2 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 2 STEPS Using Odoo 17Incoming and Outgoing Shipments in 2 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 2 STEPS Using Odoo 17
 
Open Educational Resources Primer PowerPoint
Open Educational Resources Primer PowerPointOpen Educational Resources Primer PowerPoint
Open Educational Resources Primer PowerPoint
 

Java Programming and J2ME: The Basics

  • 1. Mobile Programming with J2ME By Oluwatosin Adesanya
  • 2. Lesson 01: Basic Java Programming
  • 3. Java is ... • A Pure OOP Language • A Hybrid Programming Language • First Compiled and Interpreted • Runs on a JVM (Java Virtual Machine) Byte Code Source Object Code Code
  • 4. Getting Started • JDK (Java Development Kit) • Editor (Notepad) OR ... • Integrated Development Environment (Netbeans, Eclipse, JCreator etc.)
  • 5. Setting Up Java • Install the JDK • The JDK Sits in C:Program FilesJavajdk1.6.0 • Set the PATH Environmental Variable (How?)
  • 6. Setting the PATH Environmental Variable Open your Systems Property: choose Advanced System Settings, Click the Environmental Variable Button on the Dialog that shows Up
  • 7. Setting the PATH Environmental Variable Scroll and Select Path , Click Edit Button
  • 8. Setting the PATH Environmental Variable Append the current path with the path to the Java bin folder
  • 9. Running Java • Save your Java source code as a .java file • Use the javac Command to compile your source codes (.java files) e.g javac Result.java • A .class file is generated called a bytecode • Use java Command to run the .class file e.g java Result • Do not add .class when compiling Source Object javac Byte Code java Code Code
  • 10. The Structure of a Java Program • Java Programs are made up of classes • Classes are made up of methods • Java existing (ready-made) classes are found in the Java Class Libraries (Also Called Java APIs) • Execution of Java programs begin at the main method
  • 11. A Simple Java Program public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World!"); } }
  • 12. Classes and Objects • A Class is like a factory from which Objects are churned Out. Example Class Car could produce objects Volkswagen bettles, Toyota Camri, Peugeout 306 An Object is a model of the Real World and has States (Or Properties) and Behaviours (Or Actions) Example Object Car States are Color, Speed, Size, Plate Licence No, Cost Behaviours are Start, Stop, Accelerate, Fuel, Open Door, etc.
  • 13. Creating a Class Use the class Keyword Example public class HelloWorld { . . . } Do NOT Forget! Name your java file ClassName.java
  • 14. Adding States (Properties) • States in Java are simply variables (Otherwise called fields) Example public class PaySlip { int numdone; String name; } Observe?! Every Line of Java code ends with a semicolon (;) int,float, double, boolean, char … are Java Primitive Types
  • 15. Adding Behaviours (Methods) • Methods are functions that control states or fields or variables. They change the state of an object. Example public class PaySlip { int numdone; String name; public double getPay() { return 40.00 * numdone; } Method getPay() } Guess What? We already have a working Java Class!
  • 16. Using Our Class PaySlip We implement another tester class which contains the main method. public class TestPaySlip { public static void main(String[] args){ PaySlip opay=new PaySlip(); System.out.println("n"+opay.getPay()); } }
  • 17. Constructors • Initializes the Object after memory allocation • Takes the same name as the Class • May accept parameters OR... may not • Every Class has a default constructor that accepts no parameter • Has No Return Type • Can be Overloaded (there can be multiple Constructors)
  • 18. Constructors public class PaySlip { int numdone; String name; public PaySlip(int numdone, String name) { this.numdone=numdone; this.name=name; } public PaySlip(){ name=“Nobody”; numdone=0; } public double getPay() { return 40.00 * numdone; } }
  • 20. Lesson 02: Java 2 Micro Edition(J2ME)
  • 21. J2ME is ... • Java for small devices • Divided into Configurations, Profiles and Optional APIs Configurations, Profiles and Optional APIs combined together make up a stack Configurations: Specifies a JVM. We have CDC and CLDC CLDC (Connected Limited Device Configuration) is designed for devices with limited memory, displays, battery power and inputs. Profiles: Layered on top of CLDC and adds APIs for specific devices. We have MIDP, PDAP and Personal Profiles MIDP (Mobile Information Device Profile) has characteristics that makes most low end phones and PDAs fit in. J2ME is covered by MIDPs
  • 23. MIDP Apps are ... • Called MIDlets • Portable • Secured • represented by instances of javax.microedition.midlet.MIDlet class • Distributed as JAR (Java Archive) files along with a MANIFEST file and an Application Descriptor File (.jad file) • Reduced to small sizes before distribution by an Obfuscator Popular J2ME Apps: Opera Mini, 2go, Go Bible
  • 25. Shall We Create a MIDlet? package com.thinkit2ru; import javax.microedition.midlet.*; public class Metric extends MIDlet { public void startApp() { } public void pauseApp() { } public void destroyApp(boolean unconditional) { } }
  • 26. Remember the Constructor? package com.thinkit2ru; import javax.microedition.midlet.*; public class Metric extends MIDlet { public Metric() { The Contructor: } Build Components Here public void startApp() { } public void pauseApp() { } public void destroyApp(boolean unconditional) { } }
  • 27. You need to Know... • Primitive data types • String Manipulation • Control Statements • Arrays and other data structures • GUI Design • Database Connectivity • Multithreading • Ethics and Conventions