Drexel University Software Engineering Research Group 1 Eclipse for SE101.

Slides:



Advertisements
Similar presentations
Introduction to Eclipse. Start Eclipse Click and then click Eclipse from the menu: Or open a shell and type eclipse after the prompt.
Advertisements

How to Import an Excel File Using the SAS Import Wizard SAS 9 for Windows.
Using Eclipse. Getting Started There are three ways to create a Java project: 1:Select File > New > Project, 2 Select the arrow of the button in the upper.
1 eclipse Tips. 2 What is eclipse? Eclipse is a popular IDE (Integrated Development Environment) that we will use to create, compile, execute, and test.
Dayu Zhang 9/8/2014 Lab02. Example of Commands pwd --- show your current directory This is home of venus, not your home directory Tilde: means you are.
Java Integrated Development Environments: ECLIPSE Part1 Installation.
INF 123: Software Architectures, Distributed Systems, and Interoperability Discussion Session Week 3 - Spring 2008 Instructor: Prof. Richard N. Taylor.
E.1 Eclipse. e.2 Installing Eclipse Download the eclipse.installation.exe from the course web site to your computer and execute it. Keep the destination.
Java Programming Working with TextPad. Using TextPad to Work with Java This text editor is designed for working with Java You can download a trial version.
CS115 HOW TO INSTALL THE JAVA DEVELOPMENT KIT (JDK)
CS 2511 Fall  Windows:  Start->Specialized Academic Software- >Programming Languages->NetBeans->NetBeans IDE x.y.z  where x.y.z is a version.
UPLOADING YOUR SERVER CODE TO YOUR VIRTUAL MACHINE.
1 SEEM3460 Tutorial Access to Unix Workstations in SE.
Introduction to CVS 7/3/20151UMBC CMSC 341. Outline Introduction to Source Code Management What is CVS? CVS for Project Submission Basic commands Checkout,
15-Jul-15 Starting Eclipse Just the basics. Getting Eclipse If you Google for “Eclipse”: The first hit is the home page, The second.
ANDROID PROGRAMMING MODULE 1 – GETTING STARTED
The Basic Java Tools A text editor to write Java program source code. A compiler to translate source code into bytecode. An interpreter to translate.
1 eclipse Tips. 2 What is eclipse? Eclipse is a popular IDE (Integrated Development Environment) that we will use to create, compile, execute, and test.
Chapter 1a© copyright Janson Industries RAD ▮ Explain Eclipse, RAD, and their relationship ▮ Basic RAD concepts ▮ How to install RAD ▮ How to import.
1 SEEM3460 Tutorial Unix Introduction. 2 Introduction Unix-like system is everywhere Linux Android for smartphones Google Chrome OS for Chromebook Web.
C OMP 401 E CLIPSE S ETUP Instructor: Robert Mills. John Hansen.
1 Development Environments AUBG, COS dept Lecture Title: Dev Env: Eclipse (Extract from Syllabus) Reference:
IntroductionSlide #1 Stanford Math Professional Development: Technical Training © 2009 EPGY Stanford University.
Drexel University Software Engineering Research Group Git for SE101 1.
Booting Ubuntu Linux Live CSCI 130 – Fall 2008 Action Lab Dr. W. Jones.
CSc2010 Lab Fall 2015 Bing Li. Contact  Name : Bing Li   Website : cs.gsu.edu/~bli6  Office : Suntrust.
How to Run a Java Program CSE 1310 – Introduction to Computers and Programming Vassilis Athitsos University of Texas at Arlington 1.
SVN in Eclipse Presented by David Eisler 10/09/2014.
CPSC 233 Run graphical Java programs remotely on Mac and Windows.
1 Lab 2 “Hello world” in Unix/Linux #include "std_lib_facilities_4.h" int main(){ cout
C OMP 401 E CLIPSE S ETUP Graduate TA’s: Wade Gobel, Ben Newton.
Unit 1: Java and Eclipse The Eclipse Development Environment.
Creating and running a Java program. Eclipse Interactive Development Environment (IDE)  Eclipse is an Interactive Development Environment (IDE) for Java.
9/2/ CS171 -Math & Computer Science Department at Emory University.
Setting Up Eclipse. What is Eclipse? Eclipse is a free, downloadable software that allows us to create, compile, and run JAVA programs.
Topic Java EE installation (Eclipse, glassfish, etc.) Eclipse configuration for EE Creating a Java Web Dynamic Project Creating your first servlet.
Introduction to Eclipse Al-Zahra Univerisity Advanced Programming Arash N. Kia.
Instructions for ConnectK Game AI project
Eclipse Project. Installing Visit to download a copy for your home computerhttp:// –Get Release version 3.0 (or.
Setting up Dreamweaver to use your local WAMP testing Server
Lab00-Getting Started with VC Launch VS 2005 Launch Visual Studio 2005 – Start > All Programs > Microsoft Visual Studio 2005 > Microsoft Visual.
Getting Connected CPSC 1010 August 21, Connecting to the SOC Servers Why would we need to connect Work with files Transfer files from your local.
Introduction to Eclipse Programming with an Integrated Development Environment.
Intoduction to Andriod studio Environment With a hello world program.
CACI Proprietary Information | Date 1 PD² SR13 Client Upgrade Name: Semarria Rosemond Title: Systems Analyst, Lead Date: December 8, 2011.
CACI Proprietary Information | Date 1 PD² v4.2 Increment 2 SR13 and FPDS Engine v3.5 Database Upgrade Name: Semarria Rosemond Title: Systems Analyst, Lead.
Java IDE Dwight Deugo Nesa Matic
PuTTY Introduction to Web Programming Kirkwood Continuing Education by Fred McClurg © Copyright 2016, All Rights Reserved ssh client.
Linux Server for OS. Aerosystem Software Korea Aerospace Univ SSH (not asl.kau.ac.kr)  Port : 22 Window 
CS 201 Lecture 1 (b) Using an IDE Tarik Booker CS 201: Introduction to Programming California State University, Los Angeles.
Author: Loh Jianxiong Christopher Contributions: Chua Jie Sheng, Li Mengran, Peh Shao Hong, Oo Theong Siang, Tong Chun Kit, Tania Chattopadhyay.
Chapter 1a© copyright Janson Industries RAD ▮ Explain Eclipse, RAD, and their relationship ▮ Basic RAD concepts ▮ How to install RAD ▮ How to import.
Introducing IBM Rational Software Architect
Eclipse.
The eclipse IDE IDE = “Integrated Development Environment”
Development Environment
Introduction to Eclipse
Java Game Engine Setting It Up.
Development Environment
Eclipse Navigation & Usage.
INSTALLING AND SETTING UP APACHE2 IN A LINUX ENVIRONMENT
slides borrowed and adapted from Alex Mariakis and CSE 390a
Some Tips for Using Eclipse
Lab 10 Instructions You can use g++ on build server, visual studio on local machine or your preferred C++ IDE. Important Note: For your grade, please show.
Setting up Eclipse Locally
CSCE 206 Lab Structured Programming in C
CSCE 206 Lab Structured Programming in C
DIBBs Brown Dog Tutorial Setup
Presentation transcript:

Drexel University Software Engineering Research Group 1 Eclipse for SE101

Drexel University Software Engineering Research Group 2 Starting Eclipse Start Eclipse from the command line: $ eclipse You may get the following error:

Drexel University Software Engineering Research Group 3 Fixing the SWT error From the command line, run: Ln –s creates a symbolic link $ ln -s /usr/lib/jni/libswt-* ~/.swt/lib/linux/x86_64/ Ln –s is used to create a symbolic link to the correct libraries in /usr/lib from your home folder

Drexel University Software Engineering Research Group 4 Starting Eclipse, again Start Eclipse from the command line: $ eclipse You will be prompted to specify a workspace where your code will be stored. For your SE101 assignments, use the ~/se101/git folder you created in your home folder.

Drexel University Software Engineering Research Group 5 Create a project Click File – New – Project Select Java Project and click Next For the project name, type A If you haven’t already created the bin and src folders, you have Eclipse do it for you under Project Layout Click Finish Click yes to switch to the Java Perspective

Drexel University Software Engineering Research Group Create a new class Try creating a test class called hello.java by right clicking the project in the package explorer and selecting New – Class 6

Drexel University Software Engineering Research Group Editing code Name the class hello and click finish In the editor, paste in our hello.java app Save hello.java Run hello.java by clicking the green arrow The output is in the console at the bottom of the screen 7

Drexel University Software Engineering Research Group Editing code If I have made a mistake (e.g., I wrote system in lower case), I will get error messages when I run it. Eclipse underlines the error and lists it under the problems tab 8

Drexel University Software Engineering Research Group Accessing tux off campus To run Eclipse, you will need an X server Included with most Linux / Mac distributions or can be downloaded separately From a Linux / Mac terminal, connect to tux $ ssh -x 9

Drexel University Software Engineering Research Group 10 Accessing tux off campus For Windows, download: Putty: Putty is an SSH client used to connect to tux Xming: setup.exe/download setup.exe/download Xming is an X server used for Eclipse

Drexel University Software Engineering Research Group Accessing tux off campus Start putty and type tux.cs.drexel.edu for the host name Under Connection – SSH – X11 check “Enable X11 Forwarding” Click Open 11