Netbeans Notes ( )

Size: px
Start display at page:

Download "Netbeans Notes ( )"

Transcription

1 Netbeans Notes ( ) [Note: Netbeans is a Sun-Oracle IDE (integrated development environment) open source product almost 10 years old by now (2011). These are all free downloads. The latest release is which is pretty solid. This is the version I recommend because it works well for Java and other languages (C, C++, Ruby, Python). There is a newer Beta version, but not the right plugins are available for this version yet and it requires Java 7.0 early access. So, stick with (There is a whole lot more to NB then my notes suggest, so an instructor will need to elaborate as they learn more). These notes cover the following configuration for the Java/NB suite. 1. Setting up Java, and Java class file documentation, 2. Setting up Netbeans, 3. Installing XML and UML plugins to NB 4. Netbeans productivity hints. 1. Editing the template Java class file(s) to edit in boiler plate code, such as automatic file name, user name, date, and tags 2. Set up code macros so that typing a mnemonic will be expanded to desired code. That is, I have set mine up so that typing the 4 characters sout and hitting space bar results in System.out.println( ); with the cursor between the quote marks. (Students are really annoyed if I don t show them this option early on)!! 5. Extending NB with additional Plugins beyond XML and UML The basic NB framework can be augmented with plugins. Among the hundred and sixty or so available, I use the XML plugin and the UML plugin, plus a few others. The XML plugin allows XML editing, DTD/XML-Schema editing, and document validation, as well as XSLT editing and transformations. I have used these features in both XML (IT 408) and Java classes (IT 307, IT 407, CST 100, 200) for several years now and they work. The UML plugin allows diagrammatic round-trip engineering. Very cool, and very essential for modern software development. (For a Windows box, there are Mac version available too) Copy from instructor supplied flash drive to your hard drive:, (don t install from the flash drive!) Or, you can download all of this software from the java.sun.com site as well as mozilla.org. The java.sun.com, netbeans.org, mozilla.org sites have these downloads 1. jdk1.6 update 23(or later) -- This is the SE (standard edition) desktop software distribution. jdk means Java Development Kit. JRE means Java Runtime Environment which allows Java code to run but no development tools. 2. jdk 1.6 docs ( jdk-6u23-docs.zip this is a zip file that can remain zipped. Download from the same java.sun.com site). This contains all the Java class file Javadocs I will show you how to include this in your netbeans distribution later in these notes) C:\acbooks\QPack2008\NetbeansNotes.fm 3/7/11 rob.r 1

2 3. Netbeans (get the most comprehensive version as it includes the application server glassfish). If you download yourself, be sure to get this most comprehensive version. Don t get the combination distributions, do them as I indicate here. 4. Firefox browser distribution from Mozilla.org O.K, next---: 1) First, install jdk 1.6, update 2x since Netbeans requires a Java distribution (not the JRE, but rather the JDK), take the defaults, this should place the distribution within the Program Files folder (some windows OS require it be installed elsewhere, check on this). 2) Next, install Netbeans 6.9.1, you can customize this product to take less memory and time since we won t be using Ruby, Groovy, C++, JavaFX, or Java ME If you want to add UML and / or XML-Schema capabilities, see the plugin installation instructions below: Setting up the UML and XML Modules in Netbeans ( ) Follow the instructions below and the module will be automatically be downloaded for you as a consequence of the plugin update process. Steps to install the UML module ( assuming you have installed NB ) Go to Tools>Plugins>Settings> add dialog In the add dialog box, give this site a name like UMLModule and type in the following URL click OK, and NB should immediately start to search and then download plugins from this site. Now check Available Plugins( ), you should see one more plugin in the available plugins. Scroll down to find and install the uml plugin. Activating Your Module You might need to make your uml module active, so you should check it s setting as shown below: (Notice the Show Details box is checked so you can see the individual statuses as below). Check C:\acbooks\QPack2008\NetbeansNotes.fm 3/7/11 rob.r 2

3 the box and an option to activate or deactivate will be presented to you.. XML and XML-Schema Setup To add in XML-Schema editing support you will need to add in another plugin. As in the UML plugin instructions above, you will need to add another URL site to download the plugin. The plugin name is -- XML Schema and WSDL. For NB 6.9, the URL suggested is: Installing the Java API docs so that NB can display Java class documentation Given that you have NB up and running, you can set up to access the Java api for all Java classes by doing the following: 1. Copy the Java Doc zip file to the Java distribution folder. In my case, the distribution folder is jdk1.6.0_21. Notice that I simply copy jdk-6u23-docs.zip into that top folder, don t unzip it. C:\acbooks\QPack2008\NetbeansNotes.fm 3/7/11 rob.r 3

4 Now tell NB where to find the Java API docs. Go to: Tools>Java Platforms >javadoc tab In the Java Platforms window, click on the Add Zip/Folder tab and navigate to your jdk-6u23-docs.zip file. C:\acbooks\QPack2008\NetbeansNotes.fm 3/7/11 rob.r 4

5 From now on, when you are in a Java source code program, and you see a Java class of interest, just right-click on the class name and a browser window will open showing the Javadocs for that class. For example, here is some source code and I right clicked on the Java class System and invoked the Show Javadoc command. And here is a fragment of the Javadoc displayed in the browser window: C:\acbooks\QPack2008\NetbeansNotes.fm 3/7/11 rob.r 5

6 Learn to create projects File>New Project> java.java application Learn to create projects then type in a name of your choice for the project. Over-type the default package name and Main class. type 'finish' Go to main menu and Run>Run Main Project just to see that it runs, with no output. Code in a System.out.println("Hello World") inside of your main method ( see handout) and run again Learn to use the javadoc tags. I will expect EVERY program from next week onward to have javadoc comments as a matter of course. The extent of the comments will emerge as we learn more. 5. When you ask for a new file, as when you right click on the package name, New>Java Class> type in a name of your choice > 'finish' what you see is the template for that file type. C:\acbooks\QPack2008\NetbeansNotes.fm 3/7/11 rob.r 6

7 Learn to create projects 5.5 To edit that template to say what you want it to say next time you create a new Java Class file, do the following: Tools>Templates>java folder> Java Class >Open in Editor ( use the file below as a model of what to edit ) 5.7 To create the doc-files folder that will hold your graphics, right click the package name > New>Other>Other>Folder (You need a Folder and it is usually included in the 'Other' miscellaneous file types) Name it 'docfiles' and copy your graphics into it.. 6. Create productivity macros tools>options> editor> code templates> type in a nickname then type in what the expanded code should look like. decide how it should be invoked ( space, tab, enter,.. ) Editing the Program File Templates The Template - Java Class File ***** An edited Java Class File. ( The Java Main Class file will be almost exactly the same except for how you want to edit the main() method. *********************************** ******Edited Java Class File ******************************************** /* ${package}.${name}, ${user}, ${date} */ <#if package?? && package!= ""> package ${package}; </#if> /**${name} shows... *<p> *<!-- uncomment start/end comment tags for graphics display * <img src="doc-files/yourgraphic.jpg" alt="graphic"/> * <a href="doc-files/yourpdfdoctxtfile.pdf" >myfile link </a> * 'doc-files' must be a sub-folder of your package folder * --> *</p> ${user} 1.0 ${date} "" */ public class ${name} { }//end class ${name} C:\acbooks\QPack2008\NetbeansNotes.fm 3/7/11 rob.r 7

8 Literate Programming 5. When you ask for a new file, as when you right click on the package name >new>java Class what you see is the template for that file type. 5.5 To edit that template to say what you want it to say: tools>templates>java folder> Java Class >Open in Editor Create productivity macros Tools>Options> Editor> Code Templates> type in a nickname then type in what the expanded code should look like. decide how it should be invoked ( space, tab, enter,.. ) Literate Programming To improve your standing with your clients, it s always helpful to show them something extra, to delight them, to tantalize them with intimations of more to come. Part of this push comes from learning how to provide first rate documentation that is both explanatory and interesting. For our Java programs we have a built-in process to provide such documentation, Javadoc. With Javadoc, you can insert comments into your Java program that will be extracted and hypertext linked to other parts of your package or program as well as including links to other documents and graphics. Productivity Hint -- Undock Windows NB has a nice feature so that you can see multiple windows at once. Here is how I do it ( ): 1. open up a project 2. open up all the files I might want (use either edit or open command). They will now be in tabs across the top of your editing pane 3. click on one of the files shown in the pane. 4. go to Windows>Undock Window 5. now you have an undocked window and can move it where you like. 6. If you want to see more than 2 windows, then open up another tabbed window and do the Undoc Window again 7. You should be able keep multiple windows open and by resizing them, some part will always show so that you can bring it to the front of the editing pane. 8. Submission Project Formats When you projects to me, zip them and name them as follows: InitialsProjectNameDate(yyyymmdd).zip C:\acbooks\QPack2008\NetbeansNotes.fm 3/7/11 rob.r 8

9 Literate Programming For example, here is a zipped project that starts with my initials, the project name, and the date, in military format- yyyymmdd RRHeronFormula zip C:\acbooks\QPack2008\NetbeansNotes.fm 3/7/11 rob.r 9

Javadocing in Netbeans (rev )

Javadocing in Netbeans (rev ) Javadocing in Netbeans (rev. 2011-05-20) This note describes how to embed HTML-style graphics within your Javadocs, if you are using Netbeans. Additionally, I provide a few hints for package level and

More information

Embedding Graphics in JavaDocs (netbeans IDE)

Embedding Graphics in JavaDocs (netbeans IDE) Embedding Graphics in JavaDocs (netbeans IDE) This note describes how to embed HTML-style graphics within your JavaDocs, if you are using Netbeans. Additionally, I provide a few hints for package level

More information

How to Install (then Test) the NetBeans Bundle

How to Install (then Test) the NetBeans Bundle How to Install (then Test) the NetBeans Bundle Contents 1. OVERVIEW... 1 2. CHECK WHAT VERSION OF JAVA YOU HAVE... 2 3. INSTALL/UPDATE YOUR JAVA COMPILER... 2 4. INSTALL NETBEANS BUNDLE... 3 5. CREATE

More information

MEAP Edition Manning Early Access Program Get Programming with Java Version 1

MEAP Edition Manning Early Access Program Get Programming with Java Version 1 MEAP Edition Manning Early Access Program Get Programming with Java Version 1 Copyright 2018 Manning Publications For more information on this and other Manning titles go to www.manning.com welcome First,

More information

Running Java Programs

Running Java Programs Running Java Programs Written by: Keith Fenske, http://www.psc-consulting.ca/fenske/ First version: Thursday, 10 January 2008 Document revised: Saturday, 13 February 2010 Copyright 2008, 2010 by Keith

More information

Getting Started with Java. Atul Prakash

Getting Started with Java. Atul Prakash Getting Started with Java Atul Prakash Running Programs C++, Fortran, Pascal Python, PHP, Ruby, Perl Java is compiled into device-independent code and then interpreted Source code (.java) is compiled into

More information

Setting up your Computer

Setting up your Computer Setting up your Computer 1 Introduction On this lab, you will be getting your computer ready to develop and run Java programs. This lab will be covering the following topics: Installing Java JDK 1.8 or

More information

Getting Started with Eclipse/Java

Getting Started with Eclipse/Java Getting Started with Eclipse/Java Overview The Java programming language is based on the Java Virtual Machine. This is a piece of software that Java source code is run through to produce executables. The

More information

Standard Edition (SE) application development Enterprise Edition (EE) enterprise development Micro Edition (ME) Internet of Things (IoT) development

Standard Edition (SE) application development Enterprise Edition (EE) enterprise development Micro Edition (ME) Internet of Things (IoT) development Contents 1. Develop your project... 1 1.1. Install the latest version of the Oracle Java SE JDK... 1 1.2. Install the latest documentation for this version of the Oracle Java SE JDK... 3 1.3. Install the

More information

Page 1 of 7. public class EmployeeAryAppletEx extends JApplet

Page 1 of 7. public class EmployeeAryAppletEx extends JApplet CS 209 Spring, 2006 Lab 9: Applets Instructor: J.G. Neal Objectives: To gain experience with: 1. Programming Java applets and the HTML page within which an applet is embedded. 2. The passing of parameters

More information

Web API Lab. The next two deliverables you shall write yourself.

Web API Lab. The next two deliverables you shall write yourself. Web API Lab In this lab, you shall produce four deliverables in folder 07_webAPIs. The first two deliverables should be pretty much done for you in the sample code. 1. A server side Web API (named listusersapi.jsp)

More information

Eclipse Tutorial How To Write Java Program In Eclipse Step By Step Eclipse Tutorial For Beginners Java

Eclipse Tutorial How To Write Java Program In Eclipse Step By Step Eclipse Tutorial For Beginners Java Eclipse Tutorial How To Write Java Program In Eclipse Step By Step Eclipse Tutorial For Beginners Java We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our

More information

SIS offline. Getting Started

SIS offline. Getting Started SIS offline We highly recommend using Firefox version 3.0 or newer with the offline SIS. Internet Explorer is specifically not recommended because of its noncompliance with internet standards. Getting

More information

Using Eclipse for Java. Using Eclipse for Java 1 / 1

Using Eclipse for Java. Using Eclipse for Java 1 / 1 Using Eclipse for Java Using Eclipse for Java 1 / 1 Using Eclipse IDE for Java Development Download the latest version of Eclipse (Eclipse for Java Developers or the Standard version) from the website:

More information

For live Java EE training, please see training courses at

For live Java EE training, please see training courses at Java with Eclipse: Setup & Getting Started Originals of Slides and Source Code for Examples: http://courses.coreservlets.com/course-materials/java.html For live Java EE training, please see training courses

More information

Standard Edition (SE) application development Enterprise Edition (EE) enterprise development Micro Edition (ME) Internet of Things (IoT) development

Standard Edition (SE) application development Enterprise Edition (EE) enterprise development Micro Edition (ME) Internet of Things (IoT) development Contents 1. Develop your project... 1 1.1. Install the latest version of the Oracle Java SE JDK... 1 1.2. Install the latest documentation for this version of the Oracle Java SE JDK... 3 1.3. Install the

More information

3. NetBeans IDE 6.0. Java. Fall 2009 Instructor: Dr. Masoud Yaghini

3. NetBeans IDE 6.0. Java. Fall 2009 Instructor: Dr. Masoud Yaghini 3. NetBeans IDE 6.0 Java Fall 2009 Instructor: Dr. Masoud Yaghini Outline Installing the NetBeans IDE First NetBeans IDE Project IDE Windows Source Editor Customizing the IDE References Installing the

More information

Manual Java 6 Update 45 For Windows 7 32 Bit

Manual Java 6 Update 45 For Windows 7 32 Bit Manual Java 6 Update 45 For Windows 7 32 Bit Version 7 Update 55 of Java's Standard Edition addresses 37 security vulnerabilities while reducing the Answers the 64-bit question: Running 32-bit Java on

More information

Setup and Getting Startedt Customized Java EE Training:

Setup and Getting Startedt Customized Java EE Training: 2011 Marty Hall Java a with Eclipse: Setup and Getting Startedt Customized Java EE Training: http://courses.coreservlets.com/ 2011 Marty Hall For live Java EE training, please see training courses at http://courses.coreservlets.com/.

More information

Chapter Two Bonus Lesson: JavaDoc

Chapter Two Bonus Lesson: JavaDoc We ve already talked about adding simple comments to your source code. The JDK actually supports more meaningful comments as well. If you add specially-formatted comments, you can then use a tool called

More information

Programming Principles 1 (CSC131) & 2 (CSC132) Software usage guide

Programming Principles 1 (CSC131) & 2 (CSC132) Software usage guide School of Sciences Department of Computer Science and Engineering Programming Principles 1 (CSC131) & 2 (CSC132) Software usage guide WHAT SOFTWARE AM I GOING TO NEED/USE?... 3 WHERE DO I FIND THE SOFTWARE?...

More information

JDK-WildFly-NetBeans Setup Local

JDK-WildFly-NetBeans Setup Local @author R.L. Martinez, Ph.D. Table of Contents Overview... 1 Security Notice... 2 Download and Install Latest Stable JDK... 2 Download and Install Latest Stable WildFly... 6 Download and Install Latest

More information

2 Getting Started. Getting Started (v1.8.6) 3/5/2007

2 Getting Started. Getting Started (v1.8.6) 3/5/2007 2 Getting Started Java will be used in the examples in this section; however, the information applies to all supported languages for which you have installed a compiler (e.g., Ada, C, C++, Java) unless

More information

Monroe Township High School AP Computer Science A Summer Packet

Monroe Township High School AP Computer Science A Summer Packet Monroe Township High School AP Computer Science A Summer Packet Welcome to AP Computer Science A for the 2017-2018 School Year! This course emphasizes object-oriented programming methodology with a concentration

More information

CS 170 Java Tools. Step 1: Got Java?

CS 170 Java Tools. Step 1: Got Java? CS 170 Java Tools This semester in CS 170 we'll be using the DrJava Integrated Development Environment. You're free to use other tools but this is what you'll use on your programming exams, so you'll need

More information

3. Hello World! for IDEA. Java. Summer 2008 Instructor: Dr. Masoud Yaghini

3. Hello World! for IDEA. Java. Summer 2008 Instructor: Dr. Masoud Yaghini 3. Java Summer 2008 Instructor: Dr. Masoud Yaghini Outline Java IDEs Creating A Project Making A Java Class Building the Project Running the Project References Java IDEs Java IDEs Integrated Development

More information

Lecture (01) Getting started. Dr. Ahmed ElShafee

Lecture (01) Getting started. Dr. Ahmed ElShafee Lecture (01) Getting started Dr. Ahmed ElShafee 1 Dr. Ahmed ElShafee, fundamentals of Programming I, Agenda Download and Installation Java How things work NetBeans Comments Structure of the program Writing

More information

MEDIA COMPUTATION DRJAVA. Lecture 11.3 November 7, 2008

MEDIA COMPUTATION DRJAVA. Lecture 11.3 November 7, 2008 MEDIA COMPUTATION DRJAVA Lecture 11.3 November 7, 2008 LEARNING GOALS Understand at practical level Where to get DrJava How to start DrJava Dr Java features How to add items to the classpath for DrJava

More information

Working with Macros. Creating a Macro

Working with Macros. Creating a Macro Working with Macros 1 Working with Macros THE BOTTOM LINE A macro is a set of actions saved together that can be performed by issuing a single command. Macros are commonly used in Microsoft Office applications,

More information

A Linux Virtual Machine for CS-2011 Projects

A Linux Virtual Machine for CS-2011 Projects CS-2011, Machine Organization and Assembly Language, D-term 2013 A Linux Virtual Machine for CS-2011 Projects Hugh C. Lauer Adjunct Professor Worcester Polytechnic Institute As an alternative to working

More information

Sample Spark Web-App. Overview. Prerequisites

Sample Spark Web-App. Overview. Prerequisites Sample Spark Web-App Overview Follow along with these instructions using the sample Guessing Game project provided to you. This guide will walk you through setting up your workspace, compiling and running

More information

Manual Update Java 7 25 Mac Windows Xp

Manual Update Java 7 25 Mac Windows Xp Manual Update Java 7 25 Mac Windows Xp This release will be the last Oracle JDK 7 publicly available update. JavaFX SDK is now included in JDK 7 for Windows, Mac OS X, and Linux x86/x64. 5.3.1 Java Control

More information

Setting Up A WordPress Blog

Setting Up A WordPress Blog Setting Up A WordPress Blog Introduction WordPress can be installed alongside an existing website to be used solely as the 'blog' element of a website, or it can be set up as the foundation for an entire

More information

Download and Installation Instructions. Java JDK Software for Windows

Download and Installation Instructions. Java JDK Software for Windows Download and Installation Instructions for Java JDK Software for Windows Updated October, 2017 The CompuScholar Java Programming and Android Programming courses use the Java Development Kit (JDK) software.

More information

Installation Instructions

Installation Instructions Installation Instructions Last updated: 08 May 2017 Contents 1. Introduction... 3 2. Windows Installation... 3 2.1. Installing Dictionary App Builder... 3 2.2. Installing Java SE Development Kit (JDK)...

More information

RTMS - Software Setup

RTMS - Software Setup RTMS - Software Setup These instructions are for setting up the RTMS (Robot Tracking & Management System) software. This software will run on your PC/MAC and will be used for various labs in order to allow

More information

Manual Java Update Windows 7 64 Bit Probleme

Manual Java Update Windows 7 64 Bit Probleme Manual Java Update Windows 7 64 Bit Probleme Version 7 Update 55 of Java's Standard Edition addresses 37 security vulnerabilities 32-bit Java on 64-bit Windows involves compromises, such as Update issues.

More information

Installation Instructions

Installation Instructions Installation Instructions Reading App Builder: Installation Instructions 2017, SIL International Last updated: 1 December 2017 You are free to print this manual for personal use and for training workshops.

More information

Overview: Requirements:

Overview: Requirements: ONENOTE PROJECT DUE BEFORE CLASS BEGINS THE WEEK OF Overview: FEBRUARY 11, 2008 One of the main skills we want CIS 150 students to take away from this class is the ability to adapt to and be able to work

More information

Setting Up the Development Environment

Setting Up the Development Environment CHAPTER 5 Setting Up the Development Environment This chapter tells you how to prepare your development environment for building a ZK Ajax web application. You should follow these steps to set up an environment

More information

Software Development Kit

Software Development Kit Software Development Kit Informatica MDM - Product 360 Version: 8.1.1 07/04/2018 English 1 Table of Contents 1 Table of Contents...2 2 SDK Package...3 3 Prerequisites...3 3.1 Database...3 3.2 Java Development

More information

Developing Ajax Web Apps with GWT. Session I

Developing Ajax Web Apps with GWT. Session I Developing Ajax Web Apps with GWT Session I Contents Introduction Traditional Web RIAs Emergence of Ajax Ajax ( GWT ) Google Web Toolkit Installing and Setting up GWT in Eclipse The Project Structure Running

More information

Purpose. Why use Java? Installing the Software. Java

Purpose. Why use Java? Installing the Software. Java Purpose I am providing instructions for those that want to follow along the progress and missteps of Project BrainyCode. Going forward we will just refer to the project a JGG for Java Game Generator (I

More information

Slide 1 CS 170 Java Programming 1 Duration: 00:00:49 Advance mode: Auto

Slide 1 CS 170 Java Programming 1 Duration: 00:00:49 Advance mode: Auto CS 170 Java Programming 1 Eclipse@Home Downloading, Installing and Customizing Eclipse at Home Slide 1 CS 170 Java Programming 1 Eclipse@Home Duration: 00:00:49 What is Eclipse? A full-featured professional

More information

Starting the KVM Console

Starting the KVM Console Starting the KVM Console This chapter includes the following sections: KVM Console, page 1 Starting the KVM Console from a Server, page 5 Starting the KVM Console from a Service Profiles, page 5 Starting

More information

Database Concepts. Online Appendix I Getting Started with Web Servers, PHP, and the NetBeans IDE. 7th Edition. David M. Kroenke David J.

Database Concepts. Online Appendix I Getting Started with Web Servers, PHP, and the NetBeans IDE. 7th Edition. David M. Kroenke David J. Database Concepts 7th Edition David M. Kroenke David J. Auer Online Appendix I Getting Started with Web Servers, PHP, and the NetBeans IDE All rights reserved. No part of this publication may be reproduced,

More information

Installing and configuring an Android device emulator. EntwicklerCamp 2012

Installing and configuring an Android device emulator. EntwicklerCamp 2012 Installing and configuring an Android device emulator EntwicklerCamp 2012 Page 1 of 29 Table of Contents Lab objectives...3 Time estimate...3 Prerequisites...3 Getting started...3 Setting up the device

More information

Java Client Certification for OmegaPS 10g

Java Client Certification for OmegaPS 10g Java Client Certification for OmegaPS 10g OmegaPS 10g is NOT compatible with : Google Chrome browser (Version 42 and onwards), due to a Java issue Java 7 Update 21 Java 6 Update 45 Applies to: OmegaPS

More information

Manual Update Java 7 25 Mac 32 Bit Offline

Manual Update Java 7 25 Mac 32 Bit Offline Manual Update Java 7 25 Mac 32 Bit Offline Download Java Runtime Environment 8.0 build 45 (32-bit) Download Internet Explorer 11.0 Windows 7 Internet Explorer 11.0 Windows 7 Download Flash. For more information,

More information

AP Computer Science National Day School

AP Computer Science National Day School AP Computer Science A@Beijing National Day School Intalling the BlueJ IDE for Java Development Due date: September 2018 Instructor: Mr. Alwin Tareen Part A: Downloading and Installing the BlueJ Integrated

More information

Design Importer User Guide

Design Importer User Guide Design Importer User Guide Rev: 9 February 2012 Sitecore CMS 6.5 Design Importer User Guide How to import the design of an external webpage as a Sitecore layout or sublayout Table of Contents Chapter 1

More information

Getting Started (1.8.7) 9/2/2009

Getting Started (1.8.7) 9/2/2009 2 Getting Started For the examples in this section, Microsoft Windows and Java will be used. However, much of the information applies to other operating systems and supported languages for which you have

More information

Getting started with Apache Struts 2, with Netbeans 6.1

Getting started with Apache Struts 2, with Netbeans 6.1 Getting started with Apache Struts 2, with Netbeans 6.1 There are plenty of guides that tell you how to start with struts 2, but most of them are incomplete or don t work. This guide even makes sure you

More information

Mend for Eclipse quick start guide local analysis

Mend for Eclipse quick start guide local analysis The Semmle Mend for Eclipse plugin allows users to view Semmle results in Eclipse. This document describes how to install and use the plugin for local analysis. You can install the plugin using a Semmle

More information

SpeechClass Instructor Quick Start for A Speaker s Guidebook, Fourth Edition

SpeechClass Instructor Quick Start for A Speaker s Guidebook, Fourth Edition SpeechClass Instructor Quick Start for A Speaker s Guidebook, Fourth Edition 2 System Requirements The following Web browsers are formally supported and tested for use with SpeechClass: Windows: Internet

More information

COMP 110/401 APPENDIX: INSTALLING AND USING ECLIPSE. Instructor: Prasun Dewan (FB 150,

COMP 110/401 APPENDIX: INSTALLING AND USING ECLIPSE. Instructor: Prasun Dewan (FB 150, COMP 110/401 APPENDIX: INSTALLING AND USING ECLIPSE Instructor: Prasun Dewan (FB 150, dewan@unc.edu) SCOPE: BASICS AND BEYOND Basic use: CS 1 Beyond basic use: CS2 2 DOWNLOAD FROM WWW.ECLIPSE.ORG Get the

More information

AP Computer Science Summer Assignment (updated 5/29/2018) DUE : Sept. 4, 2018

AP Computer Science Summer Assignment (updated 5/29/2018) DUE : Sept. 4, 2018 AP Computer Science 2018 2019 E-mail: taegoode@vbschools.com Summer Assignment (updated 5/29/2018) DUE : Sept. 4, 2018 This assignment is due on the first day of class. Please read the instructions carefully

More information

OpenESB SE Enterprise Edition V3.0 Installation guide

OpenESB SE Enterprise Edition V3.0 Installation guide OpenESB SE Enterprise Edition V3.0 Installation guide Copyright Pymma Services 2014. All Rights Reserved. Page 1 of 20 Document identifier: Pymma document: 770-001 Location: www.pymma.com Editor: Pymma

More information

Downloading Java Development Kit (JDK), the Offline Client, and Utilizing the Offline Audit Tool

Downloading Java Development Kit (JDK), the Offline Client, and Utilizing the Offline Audit Tool Downloading Java Development Kit (JDK), the Offline Client, and Utilizing the Offline Audit Tool Contents Downloading Java Development Kit... 2 Downloading the Offline Client... 7 Completing Your Audit

More information

SAM4S Receipt Printer JPOS Driver. Mac OS X Installation Manual

SAM4S Receipt Printer JPOS Driver. Mac OS X Installation Manual SAM4S Receipt Printer JPOS Driver Mac OS X Contents Table of Contents Table of Contents... 2 1. Introduction... 3 2. Overview... 3 3. Prerequisite... 3 4. Extracting files using GUI... 6 5. Installation

More information

NetBeans Primer v8.0

NetBeans Primer v8.0 Using an IDE for Web Development NetBeans Primer v8.0 Using a simple text editor to create source code and compiling from the command line enables the programmer to concentrate on the code and not be encumbered

More information

Laboratory 1: Eclipse and Karel the Robot

Laboratory 1: Eclipse and Karel the Robot Math 121: Introduction to Computing Handout #2 Laboratory 1: Eclipse and Karel the Robot Your first laboratory task is to use the Eclipse IDE framework ( integrated development environment, and the d also

More information

Summer Assignment for AP Computer Science. Room 302

Summer Assignment for AP Computer Science. Room 302 Fall 2016 Summer Assignment for AP Computer Science email: hughes.daniel@north-haven.k12.ct.us website: nhhscomputerscience.com APCS is your subsite Mr. Hughes Room 302 Prerequisites: You should have successfully

More information

Netbeans Platform For Beginners

Netbeans Platform For Beginners Netbeans Platform For Beginners Free PDF ebook Download: Netbeans Platform For Beginners Download or Read Online ebook netbeans platform for beginners in PDF Format From The Best User Guide Database Platform

More information

Java Client Certification for OmegaPS 10g

Java Client Certification for OmegaPS 10g Java Client Certification for OmegaPS 10g OmegaPS 10g is NOT compatible with Java 8, Java 7 Update 21 or Java 6 Update 45 Applies to: OmegaPS R16 (10g Web Variant) to OmegaPS R18.2.02 OmegaPS 10g is certified

More information

Authoring World Wide Web Pages with Dreamweaver

Authoring World Wide Web Pages with Dreamweaver Authoring World Wide Web Pages with Dreamweaver Overview: Now that you have read a little bit about HTML in the textbook, we turn our attention to creating basic web pages using HTML and a WYSIWYG Web

More information

Students Guide to Desire2Learn

Students Guide to Desire2Learn Students Guide to Desire2Learn Created By: Justin Poggemann Updated by Kimberly Ross on June 1 st 2008 Desire2Learn Table of Contents: System Requirements How to get to Desire2Learn Log-On Procedures Secure/Non

More information

The Computer System. Hardware = Physical Computer. Software = Computer Programs. People = End Users & Programmers. people

The Computer System. Hardware = Physical Computer. Software = Computer Programs. People = End Users & Programmers. people The Computer System Hardware = Physical Computer The equipment associated with a computer system. hardware software people The set of instructions that tell a computer what to do. Use the power of the

More information

Web-CAT Guidelines. 1. Logging into Web-CAT

Web-CAT Guidelines. 1. Logging into Web-CAT Contents: 1. Logging into Web-CAT 2. Submitting Projects via jgrasp a. Configuring Web-CAT b. Submitting Individual Files (Example: Activity 1) c. Submitting a Project to Web-CAT d. Submitting in Web-CAT

More information

GETTING STARTED WITH JAVA

GETTING STARTED WITH JAVA GETTING STARTED WITH JAVA Last Updated: 12-04-2018 Table of Contents Setting up the Development Environment...3 Installing the Java development tools...4 Configuring the NetBeans installation... 11 Understanding

More information

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup Purpose: The purpose of this lab is to setup software that you will be using throughout the term for learning about Python

More information

Department of Computer Science. Software Usage Guide. CSC132 Programming Principles 2. By Andreas Grondoudis

Department of Computer Science. Software Usage Guide. CSC132 Programming Principles 2. By Andreas Grondoudis Department of Computer Science Software Usage Guide To provide a basic know-how regarding the software to be used for CSC132 Programming Principles 2 By Andreas Grondoudis WHAT SOFTWARE AM I GOING TO NEED/USE?...2

More information

Installing an IDE ELECTRICAL ENGINEERING AND COMPUTER SCIENCE DEPARTMENT. A practical guide to installing NetBeans for Java and C/C++

Installing an IDE ELECTRICAL ENGINEERING AND COMPUTER SCIENCE DEPARTMENT. A practical guide to installing NetBeans for Java and C/C++ ELECTRICAL ENGINEERING AND COMPUTER SCIENCE DEPARTMENT University of Toledo College of Engineering Installing an IDE EECS 1500 EECS 1510 A practical guide to installing NetBeans for Java and C/C++ TABLE

More information

Web API Lab folder 07_webApi : webapi.jsp your testapijs.html testapijq.html that works functionally the same as the page testapidomjs.

Web API Lab folder 07_webApi : webapi.jsp your testapijs.html testapijq.html that works functionally the same as the page testapidomjs. Web API Lab In this lab, you will produce three deliverables in folder 07_webApi : 1. A server side Web API (named webapi.jsp) that accepts an input parameter, queries your database, and then returns a

More information

I / PM Express Imaging and Process Management Web Express. User Guide EWU s Web based Document Imaging solution

I / PM Express Imaging and Process Management Web Express. User Guide EWU s Web based Document Imaging solution I / PM Express Imaging and Process Management Web Express User Guide EWU s Web based Document Imaging solution It is important to make sure you Log Out or close the Oracle IPM web client when not in use.

More information

Manually Java 7 Update 21 Offline Installer 64 Bit Windows

Manually Java 7 Update 21 Offline Installer 64 Bit Windows Manually Java 7 Update 21 Offline Installer 64 Bit Windows 5.3.1 Java Control Panel Update tab, 5.3.2 Manual install or update, 5.3.3 Windows On Windows with the Java 7 Update 25 plugin enabled, the plugin

More information

Code Check TM Software Requirements Specification

Code Check TM Software Requirements Specification Code Check TM Software Requirements Specification Author: Richard McKenna Debugging Enterprises TM Based on IEEE Std 830 TM -1998 (R2009) document format Copyright 2017 Debugging Enterprises No part of

More information

FIT 100 LAB Activity 3: Constructing HTML Documents

FIT 100 LAB Activity 3: Constructing HTML Documents FIT 100 LAB Activity 3: Constructing HTML Documents Winter 2002.pdf version of this lab (may be better formatted) Required Reading for Lab 3 Chapter 4 of the FIT course pack Additional helpful references

More information

Hello World. Lesson 1. Create your first Android. Android Developer Fundamentals. Android Developer Fundamentals

Hello World. Lesson 1. Create your first Android. Android Developer Fundamentals. Android Developer Fundamentals Hello World Lesson 1 1 1.1 Create Your First Android App 2 Contents Android Studio Creating "Hello World" app in Android Studio Basic app development workflow with Android Studio Running apps on virtual

More information

CSCI 201 Lab 1 Environment Setup

CSCI 201 Lab 1 Environment Setup CSCI 201 Lab 1 Environment Setup "The journey of a thousand miles begins with one step." - Lao Tzu Introduction This lab document will go over the steps to install and set up Eclipse, which is a Java integrated

More information

Eng. Mohammed S. Abdualal

Eng. Mohammed S. Abdualal Islamic University of Gaza Faculty of Engineering Computer Engineering Department Computer Programming Lab (ECOM 2124) Created by Eng: Mohammed Alokshiya Modified by Eng: Mohammed Abdualal Lab 1 Introduction

More information

FrontPage Student IT Essentials. October 2005 This leaflet is available in other formats on request. Saving your work

FrontPage Student IT Essentials. October 2005 This leaflet is available in other formats on request. Saving your work Saving your work All students have access to a personal file storage space known as the U: Drive. This is your own personal secure area on the network. Each user has 60mb of space (40 bigger than a floppy

More information

Imagery International website manual

Imagery International website manual Imagery International website manual Prepared for: Imagery International Prepared by: Jenn de la Fuente Rosebud Designs http://www.jrosebud.com/designs designs@jrosebud.com 916.538.2133 A brief introduction

More information

Supplement H.1: JBuilder X Tutorial. For Introduction to Java Programming, 5E By Y. Daniel Liang

Supplement H.1: JBuilder X Tutorial. For Introduction to Java Programming, 5E By Y. Daniel Liang Supplement H.1: JBuilder X Tutorial For Introduction to Java Programming, 5E By Y. Daniel Liang This supplement covers the following topics: Getting Started with JBuilder Creating a Project Creating, Compiling,

More information

Uninstall Java Manually Mac Os X 10.6 Update 6 Developer Package

Uninstall Java Manually Mac Os X 10.6 Update 6 Developer Package Uninstall Java Manually Mac Os X 10.6 Update 6 Developer Package It's more or less consistent with Java 6 (Java Language and Virtual Machine There is also packages called "Java for Mac OS X 10.6 Update

More information

Reading How the Web Works

Reading How the Web Works Reading 1.3 - How the Web Works By Jonathan Lane Introduction Every so often, you get offered a behind-the-scenes look at the cogs and fan belts behind the action. Today is your lucky day. In this article

More information

Supplement II.B(1): JBuilder X Tutorial. For Introduction to Java Programming By Y. Daniel Liang

Supplement II.B(1): JBuilder X Tutorial. For Introduction to Java Programming By Y. Daniel Liang Supplement II.B(1): JBuilder X Tutorial For Introduction to Java Programming By Y. Daniel Liang This supplement covers the following topics: Getting Started with JBuilder Creating a Project Creating, Compiling,

More information

CIS 99 How to Purchase, Register and Navigate Myitlab

CIS 99 How to Purchase, Register and Navigate Myitlab CIS 99 How to Purchase, Register and Navigate Myitlab - Purchase Myitlab at the bookstore - (Option 1) Purchase these materials at the bookstore: Go to the bookstore and purchase the following textbook/registration-code:

More information

Eng. Mohammed Alokshiya

Eng. Mohammed Alokshiya Islamic University of Gaza Faculty of Engineering Computer Engineering Dept. Computer Programming Lab (ECOM 2114) Lab 1 Introduction to Java Eng. Mohammed Alokshiya September 28, 2014 Java Programming

More information

GETTING STARTED WITH JAVA

GETTING STARTED WITH JAVA GETTING STARTED WITH JAVA Last Updated: 07-11-2016 Table of Contents Setting up the Development Environment...3 Installing the Java development tools...4 Configuring the NetBeans installation... 12 Understanding

More information

Introduction To NetBeans 5.5

Introduction To NetBeans 5.5 Sun Microsystems, Inc. Introduction To NetBeans 5.5 Gregg Sporar NetBeans Technology Evangelist gregg.sporar@sun.com Agenda What Is NetBeans? What Is GlassFish/Sun Java System Application Server? NetBeans

More information

TEMPO INSTALLATION I O A. Platform Independent Notes 1. Installing Tempo 3. Installing Tools for the Plugins 5. v0.2.

TEMPO INSTALLATION I O A. Platform Independent Notes 1. Installing Tempo 3. Installing Tools for the Plugins 5. v0.2. TEMPO INSTALLATION v0.2.2 (BETA) 2/7/2008 Platform Independent Notes 1 On Windows: 2 On Linux: 2 On OS X (Tiger 10.4.7 and later) 2 I O A Installing Tempo 3 Installing on Windows (Vista/XP/W2K) 3 Installing

More information

This will be a paragraph about me. It might include my hobbies, where I grew up, etc.

This will be a paragraph about me. It might include my hobbies, where I grew up, etc. Module 3 In-Class Exercise: Creating a Simple HTML Page Name: Overview We are going to develop our web-pages the old-fashioned way. We will build them by hand. Even if you eventually decide to use WYSIWYG

More information

CS1110 Lab 1 (Jan 27-28, 2015)

CS1110 Lab 1 (Jan 27-28, 2015) CS1110 Lab 1 (Jan 27-28, 2015) First Name: Last Name: NetID: Completing this lab assignment is very important and you must have a CS 1110 course consultant tell CMS that you did the work. (Correctness

More information

Introduction to Java. Lecture 1 COP 3252 Summer May 16, 2017

Introduction to Java. Lecture 1 COP 3252 Summer May 16, 2017 Introduction to Java Lecture 1 COP 3252 Summer 2017 May 16, 2017 The Java Language Java is a programming language that evolved from C++ Both are object-oriented They both have much of the same syntax Began

More information

Embedding and linking to media

Embedding and linking to media Embedding and linking to media Dreamweaver makes it incredibly easy to embed and link media files (these include audio files and movie files) into your web site. We ll start with linking. Linking to media

More information

NetBeans Platform in 5.0:

NetBeans Platform in 5.0: NetBeans Platform in 5.0: Radically simplified rich-client application & plug-in module development environment. Why? What? How? Where? Geertjan Wielenga http://blogs.sun.com/geertjan Sun Microsystems

More information

Choose OS and click on it

Choose OS and click on it 1. Installation: 1.1. Install Node.js. Cordova runs on the Node.js platform, which needs to be installed as the first step. Download installer from: https://nodejs.org/en/download/ 1.1.1. Choose LTS version,

More information

Eclipse Environment Setup

Eclipse Environment Setup Eclipse Environment Setup Adapted from a document from Jeffrey Miller and the CS201 team by Shiyuan Sheng. Introduction This lab document will go over the steps to install and set up Eclipse, which is

More information

Fundamentals: Expressions and Assignment

Fundamentals: Expressions and Assignment Fundamentals: Expressions and Assignment A typical Python program is made up of one or more statements, which are executed, or run, by a Python console (also known as a shell) for their side effects e.g,

More information