JCreator Tonga Institute of Higher Education. Programming with the command line and notepad is difficult. DOS disadvantages  User Interface (UI) is not.

Slides:



Advertisements
Similar presentations
6 Copyright © 2005, Oracle. All rights reserved. Building Applications with Oracle JDeveloper 10g.
Advertisements

Introduction to Eclipse. Start Eclipse Click and then click Eclipse from the menu: Or open a shell and type eclipse after the prompt.
Introduction to Visual Basic.NET Uploaded By: M.Sheraz anjum.
Copyright  Oracle Corporation, All rights reserved. 1 Creating an Application: The AppBuilder for Java IDE.
DEV-2: Getting Started with OpenEdge® Architect – Part I
20-Jun-15 Eclipse. Most slides from: 2 About IDEs An IDE is an Integrated Development Environment.
Eclipse Introduction Dwight Deugo Nesa Matic
Introduction to Java A lab course by Dr. Junaid Ahmed Zubairi SUNY Fredonia.
C# Programming: From Problem Analysis to Program Design1 2 Your First C# Program.
Computer Science A 5: 17/2. JCreator IDE: Integrated Development Editor Features: Compile and run from editor Manage multiple files Can look up api documentation.
PHY281Introduction to JavaSlide 1 Introduction to Java In this section we will learn how how to use Java and write our first Java Applet:  The Java Development.
Slide 1 of 9 Presenting 24x7 Scheduler The art of computer automation Press PageDown key or click to advance.
Eclipse IDE. 2 IDE Overview An IDE is an Interactive Development Environment Different IDEs meet different needs BlueJ and DrJava are designed as teaching.
Creating a Console Application with Visual Studio
Chapter 2 First Java Programs
1 1 1 Introduction to Java. 2 History of Java Java – Originally for intelligent consumer-electronic devices – Then used for creating Web pages with dynamic.
A First Program Using C#
Introduction to VB.NET Tonga Institute of Higher Education.
Servlets Environment Setup. Agenda:  Setting up Java Development Kit  Setting up Web Server: Tomcat  Setting up CLASSPATH.
The NetBeans IDE CSIS 3701: Advanced Object Oriented Programming.
An intro to programming. The purpose of writing a program is to solve a problem or take advantage of an opportunity Consists of multiple steps:  Understanding.
Java Programming, 3e Concepts and Techniques Chapter 3 Section 65 – Manipulating Data Using Methods – Java Applet.
© 2013 IBM Corporation Get started on IBM Linux on Power SDK November 2013.
|Tecnologie Web L-A Anno Accademico Laboratorio di Tecnologie Web Introduzione ad Eclipse e Tomcat
Java The Beginning. Why Java?  Currently, this is the language of the international AP course which runs Feb-Apr  FREE!  Platform-independent  Simple.
Computer Programming 12 Mr. Jean March 19 th, 2013.
Putting Applets into Web Pages.  Two things are involved in the process of putting applets onto web pages ◦ The.class files of the applet ◦ The html.
1 Chapter 1 Introduction to Java. 2 History of Java Java Originally for _________________________ devices Then used for creating Web pages with __________________________.
JCreator CS 21a: Introduction to Computing I Department of Information Systems and Computer Science Ateneo de Manila University.
Programming Concept Chapter I Introduction to Java Programming.
IDEs Department of Information Systems and Computer Science Ateneo de Manila University.
Introduction to Eclipse CSC 216 Lecture 3 Ed Gehringer Using (with permission) slides developed by— Dwight Deugo Nesa Matic
Introduction In The Name Of Allah, The Beneficent, The Merciful.
Active-HDL Interfaces Debugging C Code Course 10.
Creating Projects in JCreator Computer Science 40S.
Topic Java EE installation (Eclipse, glassfish, etc.) Eclipse configuration for EE Creating a Java Web Dynamic Project Creating your first servlet.
DEVS M&S Tutorial with eclipse IDE Chungman Seo
1 Getting Started with C++. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Visual Studio 2008.
Tool Install How to download & install Java 6 & Eclipse updated version based on Dr. G. L. Ray’s slides.
Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design Second Edition by Tony Gaddis.
Java Programming, Second Edition Appendix A Working with Java SDK 1.4.
1 Applets are small applications that are accessed on an Internet server, transported over the internet, automatically installed and run as a part of web.
Introduction to Eclipse Programming with an Integrated Development Environment.
1 Getting Started with C++ Part 1 Windows. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Microsoft.
Loader Tutorial Set Up. Requirements Java 7 Eclipse IvyIDE plugin Git Optional: Ant Maven.
The Development Process Compilation. Compilation - Dr. Craig A. Struble 2 Programming Process Problem Solving Phase We will spend significant time on.
Jump-Start WDSc-RSE by Robert Arce from PrismaTech. Jump-Start WDSc-RSE Presented by: Robert Arce.
Execution ways of program References: www. en.wikipedia.org/wiki/Integrated_development_environment  You can execute or run a simple java program with.
A user interface, like the one created by the DOS operating system, that makes use of typed commands.
1 1 1 Introduction to Java. 2 History of Java Java – Originally for intelligent consumer-electronic devices – Then used for creating Web pages with dynamic.
Chapter 2 First Java Programs Fundamentals of Java.
1 Using an Integrated Development Environment. Integrated Development Environments An Integrated Development Environment, or IDE, permits you to edit,
Guide To Develop Mobile Apps With Titanium. Agenda Overview Installation of Platform SDKs Pros of Appcelerator Titanium Cons of Appcelerator Titanium.
Introduction to Algorithm. What is Algorithm? an algorithm is any well-defined computational procedure that takes some value, or set of values, as input.
Eclipse.
Getting Eclipse for C/C++ Development
Using XML Tools CS551 – Fall 2001.
Chapter Topics 15.1 Graphical User Interfaces
Tonga Institute of Higher Education
Quick Start Guide for Visual Studio 2010
JCreator Setup Instructions
Social Media And Global Computing Introduction to Visual Studio
Tonga Institute of Higher Education
Understanding the Visual IDE
1. Open Visual Studio 2008.
Using JDeveloper.
JCreator Settings Only
Double click Microsoft Visual Studio 2010 on the Computer Desktop
Getting Eclipse for C/C++ Development
Presentation transcript:

JCreator Tonga Institute of Higher Education

Programming with the command line and notepad is difficult. DOS disadvantages  User Interface (UI) is not graphical  Must remember command words  Must type long commands exactly right or you will get an error. Notepad disadvantages  Code is difficult to read  Undo functionality is limited  Projects with multiple files result in multiple Notepad applications running. This can get confusing and can lead to errors.

Integrated Development Environments (IDEs) IDEs are programs designed to make programming easier.  Graphical Interface is intuitive  Program management is easier  Source code readability is improved  Too many features to list! You do not need an IDE to create a program. But they are very helpful. There are many different IDE’s.  IBM WebSphere Studio  NetBeans  Borland JBuilder  Oracle9i Jdeveloper  JCreator  Etc.

Workspace and Projects Workspace – An organizer for your projects. Project – An organizer for your programs. There are different project types:  Empty Project Console Application  Basic Java Application Uses a graphical user interface  Basic Java Foundation Classes (JFC) Application. Uses a graphical user interface with Java Foundation Classes  Basic Java Applet – runs inside of a web page A project can include many files.

Demonstration Effectively Using Workspaces, Projects and Files

Creating a program with JCreator 1. Create a New Project  File -> New -> Project  Select your project template and click Next  Input your project name and click Finish 2. Add your class  In the Package View window, right click on your project name  Click New Class  Input the name of your class and click Finish  Add your code to your class 3. Compile your project  Build -> Compile Project  Shortcut: F7 4. Execute your project  Build -> Execute Project or  Shortcut: F5

Demonstration Creating a program with JCreator

A Quick Tour of JCreator Useful Windows  File View Shows information about the files in your project  Package View Shows information from the Java files which are part of the project Allows you to create new classes, methods and variables  Data View Shows information about of the active Java document Allows you to add new methods and variables  Build Output Shows results of your last build attempt  Task List Shows Build Errors Todos  Must compile file to see todos Right click on column headings -> Show Tasks -> All Useful Features  Double clicking on a class, method, variable, todo, build error, etc. will take you to the source.  You can modify the default directory of your project files Configure -> Options -> Directories -> Default Project Directory

Demonstration JCreator Features