Eclipse配置

一、Java开发

首先需要下载的是开发工具包,一般使用Sun(已被ORACLE收购)发布的JDK,并设置相关环境变量 JAVA_HOME,CLASSPATH,PATH 的内容,在此不再叙述;

获得Eclipse工具:

官方网站: http://www.eclipse.org/ ; 查找合适的版本如 Eclipse Standard 4.3.2版本,下载文件为: eclipse-standard-kepler-SR2-win32-x86_64.zip

=========下载页面相关说明=============================

Package Description

The Eclipse Platform, and all the tools needed to develop and debug it: Java and Plug-in Development Tooling, Git and CVS support, including source and developer documentation.

Click here to file a bug against Eclipse Platform.

This package includes:

  • Eclipse Git Team Provider

  • Eclipse Java Development Tools

  • Eclipse Plug-in Development Environment

Detailed features list  

  • org.eclipse.cvs

  • org.eclipse.cvs.source

  • org.eclipse.egit

  • org.eclipse.egit.import

  • org.eclipse.epp.package.common.feature

  • org.eclipse.equinox.p2.user.ui

  • org.eclipse.help

  • org.eclipse.jdt

  • org.eclipse.jdt.source

  • org.eclipse.jgit

  • org.eclipse.pde

  • org.eclipse.pde.source

  • org.eclipse.platform

  • org.eclipse.platform.source

  • org.eclipse.rcp

  • org.eclipse.rcp.source

Maintained by: Eclipse Packaging Project

===============================================

但下载时应注意Eclipse与JDK的版本应相符,否则就会出现问题,具体信息可以查看官网信息,也可以阅读安装目录里的 eclipse/readme/readme_eclipse.html 查看:

Eclipse 4.3 is tested and validated on the following reference platforms (this list is updated over the course of the release cycle):    
============整理了一下格式=======================    
Operating System: Windows    
Version: 7    
Hardware: x86 32-bit    
x86 64-bit    
JRE: Oracle Java 7u9    
Oracle Java 6 Update 37    
IBM Java 6 SR11    
Windowing System: Win32    
=======================================    
As stated above, we expect that Eclipse works fine on other current Java VM and OS versions but we cannot flag these as reference platforms without significant community support for testing them.

注:若启动Eclipse时提示无法加载jvm.dll,本人发现重新启动计算机,或更换jdk版本可以解决

二、C/C++开发

使用CDT开发插件或一开始就下载 Eclipse IDE for C/C++ Developers,但无论如何都要使用外编译器,一般选择GNU/GCC工具集,如MinGW。

CDT插件的安装可以使用Eclipse的help—>Install new software选项安装,输入http://download.eclipse.org/tools/cdt/releases/indigo获取CDT插件,也可以将单独下载的CDT压缩zip文件解压到Eclipse对应的目录,重启即可完成;

对于C/C++编译器,可以在网上下载MinGW,但其实很多IDE也是基于GCC工具的,也是可以使用的,如DEV C++,Quincy 2005等工具;

你可能感兴趣的:(Eclipse配置)