Title: Introduction to JDK, eclipse and Microsoft Visual Studio IDE (Integrated Development
Environment)
Aim: Explain in Detail
1) The installation procedure of JDK(Java Development kit) and eclipse.
2) The steps to create C++ Application using Microsoft Visual Studio.
Steps to install JDK:
Double click jdk-7u25-windows-i5 Following window will open:
Then click Next
Again click Next.
Click Next……following window will open
It will show msg—“Successfully Installed Java SE Development Kit 7 Update 25”
It means “ jdk-7u25-windows-i586” is installed successfully. And at last click Close.
To check if jdk is installed or not-----go to = Local disk C  Program
filesJavajdk1.7.0_25bin
At this location you will find .exe files including ‘javac.exe’ this means jdk is installed.
For giving the path: Copy the following address: C:Program Files
(x86)Javajdk1.7.0_25bin
Then go to : ->My Computer->(right click)->Properties->Advanced System Settings………you’ll
get following window::
After that click :-> Environmental Variables…..below window will appear
Then in system variables paste that address & then click “OK”. Path is set…!!!
Steps to install eclipse:
Go to set upeclipse-standard-kepler-R-win32eclipse
Following window will open. Then double click on below eclipse application. Eclipse will get
open.
Then create a workspace for eclipse in any of the drive. For eg. D:java workspace
Then click OK. It’s done ! Below window will open , where we can create a project.
f
To create a project ,go toNew Java project.Following window will open.
Give name to your project & clickNext. For eg. Project name: Program1. Following window
will open .Then clickFinish.
New project is created. Below window will open where we can create a class.
To create a class, go to FileNewClass.
Give name to class (for eg.Calci ) & click Finish. window as shown below will open.
This is the workplace to write a program.
STEPS TO CREATE WORKSPACE IN VISUAL STUDIO
1. CLICK ON START Button ->Open All Programs -> Select Microsoft Visual Studio 6.0
2. now select Microsoft Visual C++ 6.0 .This window will appear Click on close
3. click File->New
4.Then select project option as win32 console Application and assign project name(i.e.FALCON)
5.Click
Finish
6. This window will appear:this means a workspace with FALCON class is created
6. After workspace creation we have to create a source file Select file->new-
>
7. select c++ source file and assign file name with extension .cpp (pc.cpp) then click OK
8. Type the program
9. For compilation : select build->comile pc.cpp (ctrl +f7)
10.to run the program click on run symbol(ctrl + f5): Click on yes to build the program
11. then this output window will appear

More Related Content

PDF
The Ring programming language version 1.2 book - Part 8 of 84
DOCX
Installation and configure the oracle webcenter
PPT
Get d3dx9 25.dll error fixed
DOCX
To run java program in eclipse
PPTX
Windows 7 Magic
PDF
Basic Tutorial in Vizwik
DOCX
JAVA JDK INSTALLATION PROCEDURE
PPT
Evaluation Instructions Ppt
The Ring programming language version 1.2 book - Part 8 of 84
Installation and configure the oracle webcenter
Get d3dx9 25.dll error fixed
To run java program in eclipse
Windows 7 Magic
Basic Tutorial in Vizwik
JAVA JDK INSTALLATION PROCEDURE
Evaluation Instructions Ppt

Similar to Jdkeclipsevs (20)

PDF
Installation
DOC
Create vc++6
PPT
Visual c++ demo
DOCX
Page 8 of 83.Tutorial Get Started with Eclipse in the Compute.docx
PDF
Supplement J Eclipse
 
PDF
Visual studio 2012
DOCX
Unit2 java
PPT
Microsoft VS C++ Add a project
PDF
Visual c++ 2010_tutorial
PDF
intro-to-eclipse.pdf
PPT
Java basic introduction
PPTX
PPTX
Introduction to java
PPTX
Programming
PPT
Eclipse introduction IDE PRESENTATION
PDF
Core Java
PPT
Visual Studio 2012 Course Blackboard TIC
PDF
Eclipse tutorial
PPS
Vb.net session 15
PPTX
01. Introduction to programming with java
Installation
Create vc++6
Visual c++ demo
Page 8 of 83.Tutorial Get Started with Eclipse in the Compute.docx
Supplement J Eclipse
 
Visual studio 2012
Unit2 java
Microsoft VS C++ Add a project
Visual c++ 2010_tutorial
intro-to-eclipse.pdf
Java basic introduction
Introduction to java
Programming
Eclipse introduction IDE PRESENTATION
Core Java
Visual Studio 2012 Course Blackboard TIC
Eclipse tutorial
Vb.net session 15
01. Introduction to programming with java
Ad

Recently uploaded (20)

PPTX
Core Concepts of Personalized Learning and Virtual Learning Environments
PDF
LIFE & LIVING TRILOGY - PART (3) REALITY & MYSTERY.pdf
PDF
LIFE & LIVING TRILOGY - PART - (2) THE PURPOSE OF LIFE.pdf
PDF
LEARNERS WITH ADDITIONAL NEEDS ProfEd Topic
PDF
Complications of Minimal Access-Surgery.pdf
PPTX
Computer Architecture Input Output Memory.pptx
DOCX
Cambridge-Practice-Tests-for-IELTS-12.docx
PDF
LIFE & LIVING TRILOGY- PART (1) WHO ARE WE.pdf
PPTX
Share_Module_2_Power_conflict_and_negotiation.pptx
PDF
Hazard Identification & Risk Assessment .pdf
PPTX
ELIAS-SEZIURE AND EPilepsy semmioan session.pptx
PDF
Τίμαιος είναι φιλοσοφικός διάλογος του Πλάτωνα
PDF
AI-driven educational solutions for real-life interventions in the Philippine...
PDF
BP 505 T. PHARMACEUTICAL JURISPRUDENCE (UNIT 1).pdf
PDF
Journal of Dental Science - UDMY (2021).pdf
PPTX
B.Sc. DS Unit 2 Software Engineering.pptx
PDF
HVAC Specification 2024 according to central public works department
PDF
International_Financial_Reporting_Standa.pdf
PPTX
Module on health assessment of CHN. pptx
PDF
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 1)
Core Concepts of Personalized Learning and Virtual Learning Environments
LIFE & LIVING TRILOGY - PART (3) REALITY & MYSTERY.pdf
LIFE & LIVING TRILOGY - PART - (2) THE PURPOSE OF LIFE.pdf
LEARNERS WITH ADDITIONAL NEEDS ProfEd Topic
Complications of Minimal Access-Surgery.pdf
Computer Architecture Input Output Memory.pptx
Cambridge-Practice-Tests-for-IELTS-12.docx
LIFE & LIVING TRILOGY- PART (1) WHO ARE WE.pdf
Share_Module_2_Power_conflict_and_negotiation.pptx
Hazard Identification & Risk Assessment .pdf
ELIAS-SEZIURE AND EPilepsy semmioan session.pptx
Τίμαιος είναι φιλοσοφικός διάλογος του Πλάτωνα
AI-driven educational solutions for real-life interventions in the Philippine...
BP 505 T. PHARMACEUTICAL JURISPRUDENCE (UNIT 1).pdf
Journal of Dental Science - UDMY (2021).pdf
B.Sc. DS Unit 2 Software Engineering.pptx
HVAC Specification 2024 according to central public works department
International_Financial_Reporting_Standa.pdf
Module on health assessment of CHN. pptx
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 1)
Ad

Jdkeclipsevs

  • 1. Title: Introduction to JDK, eclipse and Microsoft Visual Studio IDE (Integrated Development Environment) Aim: Explain in Detail 1) The installation procedure of JDK(Java Development kit) and eclipse. 2) The steps to create C++ Application using Microsoft Visual Studio. Steps to install JDK: Double click jdk-7u25-windows-i5 Following window will open: Then click Next Again click Next.
  • 2. Click Next……following window will open It will show msg—“Successfully Installed Java SE Development Kit 7 Update 25” It means “ jdk-7u25-windows-i586” is installed successfully. And at last click Close. To check if jdk is installed or not-----go to = Local disk C  Program filesJavajdk1.7.0_25bin At this location you will find .exe files including ‘javac.exe’ this means jdk is installed. For giving the path: Copy the following address: C:Program Files (x86)Javajdk1.7.0_25bin Then go to : ->My Computer->(right click)->Properties->Advanced System Settings………you’ll get following window:: After that click :-> Environmental Variables…..below window will appear Then in system variables paste that address & then click “OK”. Path is set…!!!
  • 3. Steps to install eclipse: Go to set upeclipse-standard-kepler-R-win32eclipse Following window will open. Then double click on below eclipse application. Eclipse will get open. Then create a workspace for eclipse in any of the drive. For eg. D:java workspace Then click OK. It’s done ! Below window will open , where we can create a project. f
  • 4. To create a project ,go toNew Java project.Following window will open. Give name to your project & clickNext. For eg. Project name: Program1. Following window will open .Then clickFinish. New project is created. Below window will open where we can create a class.
  • 5. To create a class, go to FileNewClass. Give name to class (for eg.Calci ) & click Finish. window as shown below will open. This is the workplace to write a program.
  • 6. STEPS TO CREATE WORKSPACE IN VISUAL STUDIO 1. CLICK ON START Button ->Open All Programs -> Select Microsoft Visual Studio 6.0 2. now select Microsoft Visual C++ 6.0 .This window will appear Click on close 3. click File->New
  • 7. 4.Then select project option as win32 console Application and assign project name(i.e.FALCON) 5.Click Finish 6. This window will appear:this means a workspace with FALCON class is created
  • 8. 6. After workspace creation we have to create a source file Select file->new- > 7. select c++ source file and assign file name with extension .cpp (pc.cpp) then click OK 8. Type the program
  • 9. 9. For compilation : select build->comile pc.cpp (ctrl +f7) 10.to run the program click on run symbol(ctrl + f5): Click on yes to build the program 11. then this output window will appear