ECLIPSE搭建RUBY开发环境
Eclipse IDE开发环境使用教程说明书
iAbout the T utorialEclipse is an integrated development environment (IDE) for Java and other programming languages like C, C++, PHP, and Ruby etc. Development environment provided by Eclipse includes the Eclipse Java development tools (JDT) for Java, Eclipse CDT for C/C++, and Eclipse PDT for PHP, among others.This tutorial will teach you how to use Eclipse in your day-2-day life while developing any software project using Eclipse IDE. We will give special emphasis on Java project. AudienceThis tutorial has been prepared for beginners to help them understand basic functionality of Eclipse tool. After completing this tutorial, you will find yourself at a moderate level of expertise in using Eclipse IDE from where you can take yourself to next levels. PrerequisitesWe assume you are going to use Eclipse IDE to handle all levels of Java projects development. So it will be good if you have knowledge of software development using any programming language specially Java programming.Copyright & Disclaimer© Copyright 2015 by Tutorials Point (I) Pvt. Ltd.All the content and graphics published in this e-book are the property of Tutorials Point (I) Pvt. Ltd. The user of this e-book can retain a copy for future reference but commercial use of this data is not allowed. Distribution or republishing any content or a part of the content of this e-book in any manner is also not allowed without written consent of the publisher. We strive to update the contents of our website and tutorials as timely and as precisely as possible, however, the contents may contain inaccuracies or errors. Tutorials Point (I) Pvt. Ltd. provides no guarantee regarding the accuracy, timeliness or completeness of our website or its contents including this tutorial. If you discover any errors on our website or inthistutorial,******************************************iT able of ContentsAbout the Tutorial (i)Audience (i)Prerequisites (i)Copyright & Disclaimer (i)Table of Contents .................................................................................................................................... i i 1.OVERVIEW (1)What is Eclipse? (1)Licensing (1)Eclipse Releases (1)2.INSTALLATION (3)Downloading Eclipse (3)Installing Eclipse (3)Launching Eclipse (4)3.EXPLORE WINDOWS (5)Parts of an Eclipse Window (5)Using Multiple Windows (6)4.EXPLORE MENUS (7)Typical Eclipse Menus (7)Brief Description of Menus (8)Customizing Menus (8)5.EXPLORE VIEWS (9)About Views (9)Organizing Views (9)Moving Views (9)Creating View Folders (10)Opening a view (10)6.PERSPECTIVES (13)What is a Perspective? (13)Opening a Perspective (13)Switching between Perspectives (13)Closing a Perspective (14)Customizing a Perspective (14)7.WORKSPACES (16)About Eclipse Workspace (16)UI Elements for Managing the Workspace (16)8.CREATE JAVA PROJECT (18)Opening the New Java Project wizard (18)Using the New Java Project wizard (18)Viewing the Newly Created Project (20)9.CREATE JAVA PACKAGE (21)Opening the New Java Package wizard (21)Using the New Java Package Wizard (21)Viewing the Newly Created Package (22)10.CREATE JAVA CLASS (23)Opening the New Java Class Wizard (23)Using the New Java Class Wizard (23)Viewing the Newly Created Java class (24)11.CREATE JAVA INTERFACE (25)Opening the New Java Interface Wizard (25)Using the New Java Interface Wizard (25)Viewing the Newly Created Java Interface (26)12.CREATE XML FILE (27)Opening the New XML File wizard (27)Using the New XML File wizard (28)Viewing the Newly Created XML File (29)13.JAVA BUILD PATH (30)Setting the Java Build Path (30)14.RUN CONFIGURATION (31)Creating and Using a Run Configuration (31)15.RUNNING A PROGRAM (33)Running a Java Program (33)16.CREATE JAR FILES (35)Opening the Jar File wizard (35)Using the Jar File wizard (35)17.CLOSE PROJECT (37)Why Close a Project? (37)How to Close a Project? (37)Closed Project in Package Explorer (38)18.REOPEN PROJECT (39)Reopening a Closed Project (39)19.BUILD PROJECT (40)Building a Java Project (40)20.DEBUG CONFIGURATION (42)Creating and Using a Debug Configuration (42)21.DEBUGGING A PROGRAM (44)Debugging a Java Program (44)22.PREFERENCES (48)Setting Preferences (48)23.CONTENT ASSIST (50)Using Content Assist (50)24.QUICK FIX (52)Using Quix Fix (52)25.HOVER HELP (54)Using Hover Help (54)26.SEARCH MENU (56)Searching the Workspace (56)27.NAVIGATION (58)Navigating the Eclipse Workspace (58)Open Type (58)Open Type in Hierarchy (60)Open Resource (61)28.REFACTORING (63)Refactoring using Eclipse (63)29.ADD BOOKMARKS (64)About Bookmarks (64)Adding a Bookmark (64)Opening the Bookmarks View (64)Using the Bookmarks View (65)30.TASK MANAGEMENT (66)Managing Tasks (66)Opening the Tasks View (67)Using the Tasks View (67)31.INSTALL PLUGINS (69)Locating and Installing Plug-ins (69)32.CODE TEMPLATES (73)Using Code Templates (73)Modifying/Adding code templates (74)33.SHORTCUTS (75)About Shortcuts (75)34.RESTART OPTION (78)Restarting Eclipse (78)35.TIPS & TRICKS (79)36.WEB BROWSERS (81)Internal Web Browser (81)Eclipse 7What is Eclipse?In the context of computing, Eclipse is an integrated development environment (IDE) for developing applications using the Java programming language and other programming languages such as C/C++, Python, PERL, Ruby etc.The Eclipse platform which provides the foundation for the Eclipse IDE is composed of plug-ins and is designed to be extensible using additional plug-ins. Developed using Java, the Eclipse platform can be used to develop rich client applications, integrated development environments, and other tools. Eclipse can be used as an IDE for any programming language for which a plug-in is available.The Java Development Tools (JDT) project provides a plug-in that allows Eclipse to be used as a Java IDE, PyDev is a plugin that allows Eclipse to be used as a Python IDE, C/C++ Development Tools (CDT) is a plug-in that allows Eclipse to be used for developing application using C/C++, the Eclipse Scala plug-in allows Eclipse to be used an IDE to develop Scala applications and PHPeclipse is a plug-in to eclipse that provides complete development tool for PHP.LicensingEclipse platform and other plug-ins from the Eclipse foundation is released under the Eclipse Public License (EPL). EPL ensures that Eclipse is free to download and install. It also allows Eclipse to be modified and distributed.Eclipse ReleasesEvery year, since 2006, the Eclipse foundation releases the Eclipse Platform and a number of other plug-ins in June.1.Eclipse8Eclipse 9Downloading EclipseYou can download eclipse from /downloads/. The download page lists a number of flavors of eclipse.The capabilities of each packaging of eclipse are different. Java developers typically use Eclipse Classic or Eclipse IDE for developing Java applications.The drop down box in the right corner of the download page allows you to set the operating system on which eclipse is to be installed. You can choose between Windows, Linux and Mac. Eclipse is packaged as a zip file.Installing EclipseTo install on windows, you need a tool that can extract the contents of a zip file. For example you can use:∙7-zip ∙PeaZip ∙ IZArcUsing any one of these tools, extract the contents of the eclipse zip file to any folder of your choice.2.Launching EclipseOn the windows platform, if you extracted the contents of the zip file to c:\, then you can start eclipse by using c:\eclipse\eclipse.exeWhen eclipse starts up for the first time it prompts you for the location of the workspace folder. All your data will be stored in the workspace folder. You can accept the default or choose a new location.1011If you select "Use this as the default and do not ask again", this dialog box will not come up again. You can change this preference using the Workspaces Preference Page. See the Preference tutorialpage for more details.Eclipse 12Parts of an Eclipse WindowThe major visible parts of an eclipse window are:∙Views ∙Editors (all appear in one editor area) ∙Menu Bar ∙ ToolbarAn eclipse perspective is the name given to an initial collection and arrangement of views and an editor area. The default perspective is called java. An eclipse window can have multiple perspectives open in it but only one perspective can be active at any point of time. A user can switch between open perspectives or open a new perspective. A perspective controls what appears in some menus and tool bars.3.EclipseA perspective has only one editor area in which multiple editors can be open. The editor area is usually surrounded by multiple views. In general, editors are used to edit the project data and views are used to view the project metadata. For example, the package explorer shows the java files in the project and the java editor is used to edit a java file.The eclipse window can contain multiple editors and views but only one of them is active at any given point of time. The title bar of the active editor or view looks different from all the others.The UI elements on the menu bar and tool bar represent commands that can be triggered by an end user.Using Multiple WindowsMultiple Eclipse Windows can be open at the same time. To open a new window, click on the Windows menu and select the New Window menu item.Each window can have a different perspective open in them. For example you could open two Eclipse windows one in the Java perspective and the other in the Debug perspective. The window showing the Java perspective can be used for editing the java code and the window showing the debug perspective can be used for debugging the application being developed.13Eclipse 14T ypical Eclipse MenusThe typical menus available on the menu bar of an Eclipse window are:∙File menu ∙Edit menu ∙Navigate menu ∙Search menu ∙Project menu ∙Run menu ∙Window menu ∙ Help menu4.Plug-ins can add new menus and menu items. For example when the java editor is open, you will see the Source menu and when the XML editor is open, you will see the Design menu. Brief Description of Menus15Customizing MenusThe visible menu items on a menu depend on the installed plug-ins and customization done using the Customize Perspective dialog box.16Eclipse 17About ViewsEclipse views allow users to see a graphical representation of project metadata. For example the project navigator view presents a graphical representation of the folders and files associated with a project and properties view presents a graphical representation of an element selected in another view or editor.An eclipse perspective can show any number of views and editors. All editor instances appear in a single editor area, whereas views are placed inside view folders. A workbench window can display any number of view folders. Each view folder can display one or more views. Organizing ViewsThe following picture shows four views arranged in a view folder.The picture given below shows the same four views arranged in two view folders.5.Moving ViewsTo move a view from one view folder to another, just click on the view title and drag to the title bar area of another view folder. The green line shown below is a result of dragging the title bar of the Properties view from one view folder to the title bar area of another view folder. The Properties view can be moved to where the green line is by releasing the mouse button and sending out a drop event.Creating View FoldersView folders can be dynamically created by dragging the title bar of a view to anywhere outside the editor area and title bar of another view folder. As you drag the title bar around, green lines will indicate where exactly the new view folder will be created.Moving the drag icon to the bottom of a window allows you to create a view folder that spans the entire width of the window. Moving the drag icon to the left or right edge of window allows you to create a view folder that spans the entire height of the window.18Opening a viewTo open a view, click on the Window menu and select the Show View menu item.19Clicking on the Other menu item brings up the Show View dialog box that allows you to locate and activate a view.20The views are organized by category. To quickly locate a view, just type the name of a view into the filter text box. To open a view, select it and click on the OK button. The subsequent pages of this tutorial introduce you to a number of useful views.21End of ebook previewIf you liked what you saw…Buy it from our store @ https://22。
eclipse的插件安装方法
eclipse的插件安装方法Eclipse的插件机制是轻型软件组件化架构。
在客户机平台上,Eclipse使用插件来提供所有的附加功能,例如支持Jav a以外的其他语言。
已有的分离的插件已经能够支持C/C++(CDT)、Perl、Ruby,Python、telnet和数据库开发。
插件架构能够支持将任意的扩展加入到现有环境中,例如配置管理,而决不仅仅限于支持各种编程语言。
Eclipse的设计思想是:一切皆插件。
Eclipse核心很小,其它所有功能都以插件的形式附加于Ecl ipse核心之上。
Eclipse基本内核包括:图形API (SWT/Jface),Java开发环境插件(JDT ),插件开发环境(PDE)等。
Eclipse插件的安装方法大体有以下几种方式:第一种:直接复制法假设Eclip se的安装目录在C:\eclipse,解压下载的ec lipse插件或者安装e clipse插件到指定目录AA(如:c:\AA)文件夹,打开AA 文件夹,在AA文件夹里分别包含两个文件夹fea tures和plugin s ,然后把两个文件夹里的文件分别复制到C:\eclipse下所对应的文件夹下的fe atures和plugin s 下,一般的把插件文件直接复制到eclips e目录里是最直接也是最愚蠢的一种方法!因为日后想要删除这些插件会非常的困难,不推荐使用。
注意:直接将插件包解压到plug ins文件夹下之后,重启eclip se,可能不会加载新的插件。
解决方法是:1、打开命令行,到当前ecli pse的目录下,输入eclip se -clean,重新启动ecl ipse,这样eclip se 就会加上新的插件了。
2、如果插件不能生效,则请将ecli pse\configu ration\org.eclipse.update目录删除后再启动eclip se;你可以在ecl ipse的菜单"Help"-->"About Eclipse SDK"-->"Feature Details" 和"Plug-in Details"中看到新安装的插件。
Eclipse工具及开发环境搭建
1.准备Eclipse工具2.解压到一个没有中文并且没有空格的路径中3.添加maven到Eclipse中,首先找到maven插件包的位置,再添加到Eclispe解压路径中的dropins目录下就可以了4.Java环境配置:5.编译版本:6.选择java运行环境:7.Server配置配置web Server,本系统使用tomcat7作为web容器,需要配置tomcat Server,配置步骤如下:1.添加tomcat运行环境点击完成2.添加Tomcat Server3.显示Tomcat Server4.配置tomcatTimeouts:延迟时间设置加大,设置为100以上Server location:选择中间选项,使用tomcat的安装目录,server path即tomcat的安装目录,Deploy path选择tomcat安装目录下默认的工程部署目录即tomcat安装目录下的webapps。
如果出现tomcat启动工程时存溢出,可通过下边的方法加大虚拟机存。
在上边红色框加入java存设置命令:-Xms128m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=512m 5.eclipse默认字符集工作区默认字符编码更改工作区默认字符集更改为utf-86.更改jsp文件字符编码:7.Web工程测试创建一个web工程测试tomcat是否可以使用。
1.创建动态web工程2.新建一个jsp:3.在tomcat中部署运行4.重新部署:eclipse存设置为防止eclipse在启动运行时存溢出,修改eclipse.ini文件添加如下:-Xms128m-Xmx768m-XX:permSize=64M-XX:MaxPermSize=128Meclipse字体修改eclipse添加代码提示在上边红色框输入:.abcdefghijklmnopqrstuvwxyz。
Windows下RubyonRails开发环境安装配置图文教程
Windows下RubyonRails开发环境安装配置图⽂教程本⽂详细介绍如何在Windows配置Ruby on Rails 开发环境,希望对ROR初学者能有帮助。
⼀、下载并安装Ruby双击安装,安装过程出现如下界⾯。
如图这⾥我们选择安装路径为 D:\Ruby。
下⾯有3个选项分别是:(1) 是否安装tclTk⽀持。
(2) 添加ruby命令路径到系统环境变量PATH。
(3)是否将 .rb 和.rbw ⽂件关联到Ruby。
这⾥我们全部打勾。
点击“Install” 安装完毕。
打开CMD窗⼝,运⾏ ruby -v 显⽰ruby当前版本号。
如图你也可以输⼊ ruby -e 'puts "hello world" ',则显⽰ hello world。
也可以打开记事本写⼀段代码如: puts "hello world",保存为 test.rb,然后在CMD中运⾏ ruby test.rb 则显⽰结果 hello world。
我想你不⽢⼼就⽤记事本来写程序吧,这⾥推荐⼀款轻巧的代码编辑器SciTE,⽀持多种语法⾼亮显⽰及⾼亮导出,且免费开源。
以前的RubyInstaller ⾃带SciTE,⽽新版需要⾃⼰下载。
官⽅地址: windows下有绿⾊版和安装版,安装版下载点这⾥。
安装SciTE后,打开它,我们输⼊代码 puts "hello world" ,点击菜单=>file=>save 保存⽂件为test.rb。
然后按键盘F5,右侧输出窗⼝出现结果。
如图:⼆、下载并安装RubyGemsRubyGems是⼀个⽅便⽽强⼤的Ruby程序包管理器,类似RedHat的RPM。
它将⼀个Ruby应⽤程序打包到⼀个gem⾥,作为⼀个安装单元。
特点:能远程安装包,包之间依赖关系的管理,简单可靠的卸载,查询机制,能查询本地和远程服务器的包信息,能保持⼀个包的不同版本,基于Web的查看接⼝,能查看你安装的gem的信息。
ECLIPSE环境搭建
http://www.cvsnt.con/downloads 下载cvsnt-2.0.58d.exe
安装CVSNT,启动,在Compatibility选中三项,然后在Repositories设置,增加一个CVS仓库, 单击add输入CVSNT的安装时路径和名字(建议用绝对路径)。为cvs创建一个windows用户。这个登录密码和登录CVS相同。将一个项目共享到CVS上,用以验证CVS是否安装设置成功了。
将JavaBean重定位到WEB-INF/classes目录下
选中myweb文件夹单击鼠标右键,选属性,选择java的构建路径,勾选对于源文件
夹允许输出文件夹选项,单击编辑操作即可。
安装Lomboz
解压下载文件org.objectweb.lomboz_3.0.1.n2005106.zip,emfsdo-runtime-2.0.0后,将它们(整个)复制到c:\eclipse目录中,并将org.objectweb.lomboz_3.0.1.n2005106文件夹改为lomboz,并在其下建立eclipse文件夹,然后把lomboz下的features和plugins文件夹复制到eclipse文件夹下。
配置lomboz环境,在窗口菜单选择首选项进行配置:
构建路径:保证选择的是“文件夹”项,然后在lomboz下定位JDK的tool.jar
即 //jdk/lib/toos.jar
在lomboz下Server Definition定位Tomcat的安装目录。
安装MYAQL
快速上手使用Ruby进行Web开发
快速上手使用Ruby进行Web开发第一章:引言Ruby是一种简单、灵活且高效的编程语言,尤其适用于Web开发。
本文将介绍如何快速上手使用Ruby进行Web开发。
我们将分为以下几个章节逐步展开。
第二章:环境设置为了开始使用Ruby进行Web开发,我们首先需要设置开发环境。
请按照以下步骤进行操作:1. 下载和安装Ruby解释器:在Ruby官方网站上下载最新版本的Ruby解释器,并按照安装指南进行安装。
2. 安装RubyGems:RubyGems是Ruby的软件包管理器,它可以帮助我们方便地安装和管理Ruby库。
在命令行中运行`gem install rubygems`进行安装。
3. 安装Bundler:Bundler是一个用于管理项目依赖关系的工具。
在命令行中运行`gem install bundler`进行安装。
第三章:Web框架Ruby有许多流行的Web框架可供选择,比如Ruby on Rails和Sinatra。
这些框架可以帮助我们快速构建Web应用程序。
在本章中,我们将选择其中一个框架来进行介绍。
我们将以Ruby on Rails为例。
Rails是一个基于MVC(Model-View-Controller)架构的高效Web开发框架。
以下是使用Rails进行Web开发的基本步骤:1. 创建一个新的Rails应用程序:在命令行中运行`rails new myapp`,其中`myapp`是你的应用程序名称。
2. 定义数据模型:使用Rails的生成器命令来创建数据库表格和模型类。
例如,运行`rails generate model User name:string email:string`将创建一个用户模型。
3. 设计和实现控制器:使用控制器来处理请求并决定如何响应。
运行`rails generate controller Welcome index`将创建一个欢迎页面的控制器。
4. 创建视图:视图是用户界面的一部分,它用于展示数据和接受用户输入。
Eclipse集成开发环境的配置与使用技巧
Eclipse集成开发环境的配置与使用技巧Eclipse集成开发环境(IDE)的配置与使用技巧第一章:Eclipse的简介与安装Eclipse是一款极具流行度的集成开发环境(IDE),广泛用于Java开发及其他编程语言的开发。
首先,我们需要下载适用于自己操作系统的Eclipse安装包,并按照指引进行安装。
安装完成后,我们打开Eclipse,进入工作区。
第二章:工作区与文件管理2.1 创建工作区Eclipse中的工作区可以看作是我们存放项目和相关文件的地方,我们可以根据需要选择创建一个新的工作区,也可以使用现有的工作区。
在Eclipse的启动界面可以选择创建新的工作区。
2.2 导入项目在Eclipse中,我们可以很方便地导入已有的项目。
在菜单栏中选择"File"->"Import",然后选择相应的导入方式,比如"General"->"Existing Projects into Workspace"。
根据对话框中的指引,选择项目所在的路径并导入到工作区中。
第三章:Eclipse的常用操作技巧3.1 快捷键Eclipse提供了丰富的快捷键操作,能够大幅提升开发效率。
比如,Ctrl + Shift + R可以快速查找并打开项目中的文件,Ctrl + Space可以进行代码自动补全,Ctrl + F11可以运行应用程序等等。
我们可以在Preferences中的"Keys"下查看和修改快捷键设置。
3.2 代码模板Eclipse提供了一些代码模板,可以帮助我们快速生成常用的代码结构。
比如,在输入sysout后按下Ctrl + Space就可以自动生成System.out.println()。
我们可以在Preferences中的"Java"->"Editor"->"Templates"中查看和修改代码模板。
Eclipse 开发环境搭建
Eclipse 开发环境搭建用法eclipse真的有年头了,信任java程序员没有不知道它的,最近在给团队中新来的应届生做指导,特地讲解了一下Eclipse开发环境的搭建过程,一是协助他们尽快的认识IDE的用法,二也是保证团队开发环境的全都性(顺便说一下,这点在灵敏开发团队中尤为重要,便利学问传扬,提升团队迅速响应能力)。
的过程中想起了自己当年初涉java时的情景,不免感慨万千啊。
正所谓工欲善其事必先利其器,话不多说,抓紧搭吧。
本文主要介绍在windows下搭建eclipse环境的过程,主要包括jdk的安装与配置、toat的安装与配置、eclipse 的安装与配置以及eclipse常用插件的安装。
一。
jdk安装与配置jdk7于3月份刚刚发布,目前eclipse的最新版本中还没有提供对jdk7的编译支持,所以我们只下载jdk6。
下载地址:/jdk6/挑选适合平台的安装文件,windows32下目前最新版本为:jdk-6u25-ea-bin-b03-windows-i586-27_feb_2011.e默认安装即可,安装完成后要配置环境变量。
比如,我的安装名目为:C:Program FilesJavajdk1.6。
环境变量配置如下:XP系统下,右击我的电脑 --挑选属性 --挑选高级 --点击环境变量在系统变量(S) 中新建:JAVA_HOME:C:Program FilesJavajdk1.6新建:CLASS_PATH:.;%JAVA_HOME%lib编辑:PATH:在最前面加上%JAVA_HOME%bin; 创建环境变量后,打开cmd,输入 java -version 验证是否安装胜利。
Java代码 C:WindowsSystem32 java-version java version \"1.6.0_13\" Java(TM) SE Run Environment (build 1.6.0_13-b03) Java HotSpot(TM)Client VM (build 11.3-b02, mix mode, sharing) 二。
eclipse开发环境的安装与使用方法。
Eclipse开发环境的安装与使用方法近年来,随着计算机技术的飞速发展,软件开发行业也在不断壮大。
作为一个程序员,如何选择并熟练使用合适的开发环境至关重要。
本文将对Eclipse开发环境进行全面评估,并提供安装与使用方法,帮助读者更好地理解和应用这一开发工具。
1. 了解EclipseEclipse是一款功能强大的集成开发环境(IDE),适用于Java开发,同时也支持其他语言和评台。
Eclipse具有丰富的插件和扩展功能,可帮助开发者提高效率,实现跨评台开发。
2. 安装Eclipse(1)下载Eclipse安装包访问Eclipse全球信息湾,下载适用于您操作系统的最新版本的安装包。
安装包较大,可能需要一定时间下载,请耐心等待。
(2)安装Eclipse下载完成后,双击安装包进行安装。
按照向导的提示,选择安装路径、语言和其他设置,完成安装即可。
3. 配置Eclipse(1)安装Java开发工具包(JDK)在使用Eclipse进行Java开发前,需要先安装JDK。
从Oracle全球信息湾下载合适的JDK版本,安装并配置环境变量。
(2)选择工作空间首次打开Eclipse时,系统会要求选择工作空间。
工作空间是存放项目文件的目录,可以根据个人喜好设置。
4. 使用Eclipse(1)创建项目在Eclipse中,可以通过“File”-“New”-“Java Project”来创建新的Java项目。
输入项目名称,点击“Finish”即可创建项目。
(2)编写代码选择创建的项目,在src目录下右键“New”-“Class”,输入类名和选择类的属性,即可开始编写Java代码。
(3)运行与调试完成编写后,点击“Run”按钮即可运行程序。
若有需要,可以添加断点进行调试。
5. 总结和个人观点Eclipse作为一款优秀的集成开发环境,不仅支持Java开发,还可以通过插件扩展支持其他语言和评台,极大地提高了开发效率。
在使用Eclipse进行开发时,可以借助其丰富的功能和插件,实现代码自动补全、快速导航等操作,大大简化了开发流程。
eclipse环境搭建及配置
一. 开发环境及配置
>采用JDK1.6+tomcat6.0+eclipse3.3+myeclipse6.0
JDK--java程序编译及运行时环境,java虚拟机
tomcat--java Web程序运行时环境,也可以选择jboss,websphere,weblogic等
eclipse--java se/java ee工程等开发母环境
}
ห้องสมุดไป่ตู้
2.3)配置默认编码
仍然是菜单栏中的“窗口(window)”--“首选项...(preference)”——“常规(General)”--“内容类型(Content Types)”--“文本(text)” 。然后在“缺省编码(Default encoding)”中输入“UTF-8”,点击“更新(Update)”,将“Java类文件(Java Properties File)”及其他字符编码均“更新(Update)”为“UTF-8”.
a.3)使用工具栏中的“Deploy MyEclipse J2EE Project to Server...”按钮,然后点击add, 软件会自动找到已经配置好的tomcat6, 显示出successfully deployed时说明已经配置好了tomcat6
a.4)点击工具栏中的“Run...MyEclipse Application Servers”如果正常启动,说明运行良好.
在上述列表框中选择"part title font"后,可修改编辑器下方的输出面板的标题字体.
依次进“窗口(window)”--“首选项...(preference)”——“常规(General)”--"皮肤(Appearance)"--“颜色和字体(colors and fonts)”--"Debug"--"console font (overrides default: text font)",可修改控制台输出内容的字体
Eclipse Aptana Studio RadRails 图解环境的构建解读
Eclipse + Aptana Studio + RadRails 图解环境的构建[含Aptana破解方法] - [软件使用]版权声明:转载时请以超链接形式标明文章原始出处和作者信息及本声明/logs/31978164.html1.下载Eclipse(注意必须是含有SDK的版本, 如Eclipse Classic 3.4.1)。
2.解压后,启动Eclipse。
注意:如果启动时提示JAVA版本过低(或者是稍后安装Aptana插件时直接报错),请检查你系统的JVM版本(进入cmd命令窗口,直接输入java -version即可查看默认JVM版本)。
如果的确是java版本问题,请到SUN网站下载最新的java,如果你已经安装了java 高版本,但仍然出现此提示,可能是你安装的其他软件更改了JVM的默认路径,如ORACLE。
此时,你可以指定VM参数来运行Eclipse,例如:你的jvm位于C:\ProgramFiles\Java\jre1.6.0_05\bin 则可以新建一Eclipse快捷方式,在路径中加入参数:-vm "C:\Program Files\Java\jdk1.6.0_10\jre\bin\javaw.exe"3.进入IDE后,选择Window—>preference,在General—>Capabilities中勾选Classic Update。
4.选择Help—>Software Updates—>Find And Install, 选择Search for new features to install。
5.下面可采取两种方式来安装Aptana Studio(考虑网络因素,推荐使用本地安装方式):a.远程更新方式:选择New Remote Site,添加Aptana更新地址:选择全部更新:下载安装:b.本地安装:到/install/studio/3.2/下载最新的Aptana Studio Eclipse插件选择New Archived Site...选择全部:点击Finish按钮,选择全部,下一步,"I accept the terms in the license agreements", Next, Finish解压中...Install All...完成后,弹出Aptana配置窗口[勾选打开防火墙],Next到完成提示是否需要重启Eclipse,选择Yes6.重启后可能会弹出以下提示:选择Yes,安装Aptana Subversion,安装过程和之前的Aptana Studio相似:选择全部—>接收许可。
eclipse配置Python环境
Eclipse配置Python安装环境1.打开eclipse软件
2.单击help—>Install New Software(安装新的软件)
3.点击add按钮
4.起名字和选择URL
5.eclipse检测到的Python包
6.选择安装的包
7.eclipse正在计算需要的空间
8.点击下一步继续操作
9.点击我接受,点击完成
10.正在安装pydevde过程
11.安装过程中出现对话框点击ok,点击我接受,点击ok
11.要求重新启动eclipse
12.新建一个Python项目
13.选择PyDev项目名称- PyDev Project
14.起项目名称和Python安装位置
15.选择Python安装位置
16.加入安装Python的目录
17.点击下一步
18.点击完成
19.开发环境的改变,刚才是Java开发环境现状换成了Python的开发环境
20.成功加载Python
21.新建Python类--->New-->PyDev Module
22.给Python类命名
23.编写一个简单你好!Python程序。
第2章 搭建Ruby开发环境
2.2.3 Aptana RadRails介绍
• Aptana是一个基于Eclipse的定位于网络开发的 IDE。早期的RadRails是一个独立的专门针对Ruby 和Ruby on Rails开发的Eclipse插件,后来被包 含在Aptana中,形成了一个Aptana RadRails的版 本。RadRails比较适合熟悉Eclipse的人员使用。 另外它是一个同时提供HTML、Javascript、CSS格 式支持,能够不断利用插件扩展的集成式IDE,因 此也特别适合进行基于Ruby on Rails的网站开发。 • Aptana现在分为专业版和共享版两种,专业版售 价99美元,共享版是免费的。共享版下载地址为 /studio/download/。
2.3 相关工具介绍
• 除了编辑工具以外,还有一些Ruby相关工具会经 常用到。这些工具大部分已经在Ruby的一键安装 包中包含,即不需要再去下载安装了。
2.3.1 irb(交互式Ruby Shell)
• 如果想练习使用或者是简单测试Ruby,交互式 Ruby程序——简称irb是最好的帮手。它提供一个 命令行式的环境,可以实时接收语句的输入并反 馈显示执行的结果。
第2章 搭建Ruby开发环境
• 在开始学习Ruby语言之前,首先需要在计算机上 搭建好Ruby的开发环境。2.1节中将介绍如何安装 Ruby语言支持,让计算机能够运行Ruby代码。2.2 节中将介绍一些常用的编辑工具,选择合适的编 辑工具往往有助于提高编写代码的效率。最后一 节中将介绍Ruby的一些相关实用工具,它们也是 Ruby环境中不可缺少的一部分。
2.3.3 gem (Ruby包管理)
• RubyGems是一个库和程序的标准化打包以及安装 框架。正如前面所述,Ruby程序可以通过各种类 型的库来扩展功能,对于库的标准化管理也是极 其重要的。RubyGems即是这样的一个框架,使得 Ruby包的查找、安装、升级和卸载都变得非常容 易。 • 通常而言,开发人员将要发布的程序或库打包到 一个gem文件中,然后通过互联网或其他方式将 gem文件公开。需要使用这个程序或库的人,则可 以使用一个称为gem的工具在互联网上查到这个包, 然后可以自动下载并安装这个包,在不需要的时 候也可以随时将它卸载。gem工具同样已经包含在 Ruby的一键安装包中,无需再去下载了。
Eclipse集成开发环境安装与配置教程
Eclipse集成开发环境安装与配置教程第一章:介绍Eclipse集成开发环境的作用和特点Eclipse是一个开源的、跨平台的集成开发环境,主要用于编写、调试和运行Java程序。
它具有丰富的功能和插件,可以满足不同开发需求,提高开发效率和代码质量。
第二章:Eclipse安装准备在安装Eclipse之前,我们首先需要准备好相应的环境。
首先,确保你的计算机系统符合Eclipse的最低系统要求。
然后,前往Eclipse官网,下载最新版本的Eclipse安装包。
同时,你还需要安装Java Development Kit(JDK)。
第三章:Eclipse安装步骤1. 解压安装包:将下载的Eclipse安装包解压到你选择的目录下。
2. 启动Eclipse:进入解压后的目录,找到eclipse.exe文件,并双击打开。
3. 选择工作空间:第一次启动Eclipse时,会要求你选择工作空间(Workspace),这是存放你的项目文件的目录。
选择一个合适的目录,并点击确认。
4. 设置字体和界面:根据个人喜好和需求,设置Eclipse的字体和界面,可以在“Window”→“Preferences”中进行调整。
第四章:Eclipse插件安装与配置1. 打开“Help”菜单,并选择“Eclipse Marketplace”选项。
2. 在搜索框中输入你需要的插件的关键词,然后点击搜索按钮。
3. 从搜索结果中选择适合的插件,并点击安装按钮。
4. 安装完成后,重启Eclipse即可使用新安装的插件。
5. 配置插件:有些插件需要配置才能正常使用,可以在“Window”→“Preferences”中进行相应的设置。
第五章:Eclipse项目的创建和导入1. 创建新项目:点击“File”→“New”→“Project”,选择你需要的项目类型,并按照向导进行操作。
2. 导入现有项目:点击“File”→“Import”→“General”→“Existing Projects into Workspace”,选择你要导入的项目所在的目录,并点击确认。
快速入门指南如何学习编写Ruby代码的教程
快速入门指南如何学习编写Ruby代码的教程Ruby是一种简洁而强大的编程语言,广泛用于Web开发和脚本编写。
想要学习编写Ruby代码,每个初学者都需要一个指南来帮助他们快速入门。
本文将提供一个简明扼要的指南,帮助您迅速上手学习Ruby代码的编写。
1. 安装Ruby环境要开始学习Ruby编码,首先需要在您的计算机上安装Ruby环境。
您可以从官方网站上下载并安装适合您操作系统的最新版本的Ruby。
安装成功后,您可以在命令行中输入ruby -v来验证Ruby版本。
2. 学习Ruby基础知识在编写任何代码之前,首先需要学习Ruby的基础知识。
您可以选择阅读官方文档、书籍、在线教程或参加编程课程来学习Ruby的基本语法、变量、数据类型、运算符和控制流等知识。
理解这些基础概念是学习Ruby编程的关键。
3. 使用Ruby编写第一个程序对于初学者来说,编写并运行第一个程序是非常令人激动和有成就感的。
在学习Ruby的过程中,您可以尝试编写一个简单的“Hello, World!”程序。
通过这个简单的程序,您将学会如何定义函数、输出文本以及运行Ruby代码。
```rubydef hello_worldputs "Hello, World!"endhello_world```在命令行中运行上述代码,您将看到“Hello, World!”的输出。
4. 掌握Ruby的核心概念学习编写Ruby代码的过程中,您需要掌握Ruby的核心概念。
其中一些重要的概念包括:- 变量和常量:了解如何声明和使用变量和常量。
- 数据类型:熟悉Ruby支持的各种数据类型,如字符串、整数、浮点数、数组和哈希等。
- 函数和方法:学习如何定义和调用函数和方法。
- 类和对象:理解面向对象编程的基本概念,学会创建类和实例化对象。
- 模块和库:掌握如何使用模块和库来扩展Ruby的功能。
5. 刻意练习学习编写Ruby代码最重要的一点是进行刻意练习。
Ruby开発环境手顺书
4 Rails4 のインストール
运行
1. gem i bundler
这个要安装很长一 段时间请耐心等 待· · · · · · · · · ·
运行
2. gem i rails --no-ri --no-rdoc
環境はインストールしました。おめでとう!
安装很长一
1 基本環境
操作系统 windows7(64位) ツール \\192.168.1.230\Ruby\200 開発環境\ツール
2 ruby - インストール
実行 rubyinstaller-2.0.0-p451-x64.exe
安装完成后进入命令行: 输入ruby -v
ruby安装成功
3ห้องสมุดไป่ตู้DevKit - インストール
(1)在D盘创建DevKit文件夹
(2)実行 DevKit-mingw64-32-4.7.2-20130224-1151-sfx.exe
选择D盘DevKit目 录
(3)进入命令行 进入D:\DevKit
运行
1. ruby dk.rb init
2.修改config.yml
打开
添加
- C:/Ruby200-x64 运行
migrate生成数据库修改数据库的配置修改数据库的配置11921681230ruby200開発環境04git190preview20140217client一直默认安装21921681230ruby200開発環境05sourcetreesetup14131921681230ruby200開発環境06tortoisegit186064bitgit连接自己注册自己注册帐号hey出现帐号和密码登录的时候
eclipse开发环境配置
eclipse开发环境配置⽬录:⼀、导⼊maven项⽬ 导⼊maven项⽬:File-->Import-->Maven-->Existing Maven Projects-->Next-->Browse-->找到项⽬路径-->选择⽂件夹-->Finish(我是已经导⼊后重新截图的,显⽰已经导⼊了,正常是pom.xml⽂件前的复选框打勾状态的)⼆、配置开发环境 1.设置字体:Window-->Preferences-->General-->Appearance-->Colors and Fonts-->Basic-->Text Font-->Edit-->Apply-->Apply and Close 2.设置编码(⼯作空间的默认编码格式,项⽬中的默认编码格式,配置⽂件.properties的编码格式,jsp⽂件的编码格式) 2.1⼯作空间编码设置:Window-->Preferences-->General-->Workspace-->Text file encoding-->Other:UTF-8-->Apply-->Apply and Close 2.2properties⽂件编码设置:Window-->Preferences-->General-->Content Types-->Text-->Java Properties File-->Default encoding:UTF-8-->Update-->Apply and Close 2.3项⽬编码设置:项⽬右击-->Preferences-->Text file encoding-->Other:UTF-8-->Apply-->Apply and Close 2.4jsp⽂件编码设置:Window-->Preferences-->Web-->JSP Files-->Encoding:UTF-8-->Apply-->Apply and Close 3.jdk配置:Window-->Preferences-->Java-->Installed JREs-->Add-->Standard VM-->Next-->Directory-->选择⾃⼰需要的jdk版本-->Finish--Apply-->Apply and Close jdk编译器要和jdk版本⼀致:Window-->Preferences-->Java-->Compiler-->Compiler compliance level:选择和jdk⼀样的版本-->Apply and Close 4.tomcat配置:Window-->Preferences-->Server-->Runtime Environments-->Add-->Apache-->Apache Tomcat v8.5(选择⾃⼰需要的版本,要和jdk匹配)-->Next-->JRE:选择已配置的JRE-->Finish-->Apply and Close 5.创建tomcat实例: 5.1打开Server窗⼝:2种⽅式 5.1.1第⼀种:Window-->Show View-->Other-->Server-->Servers-->Open 5.1.2第⼆种:在eclipse右上⾓选择Java EE模块,如果没有的话点击左边的⼩⽅块-->Open Perspective-->Java EE-->Open 5.2创建tomcat实例:点击"No Servers are avilable,Click this link to create a new server..."-->Apache-->Tomcat v8.5 Server-->Finish 5.3tomcat配置⽂件配置:双击Servers窗⼝下的tomcat,展⽰上⾯所⽰的配置信息,修改Server Locations,使⽤tomcat⾃⼰的项⽬路径,修改项⽬端⼝号为8081,修改后记得点击保存按钮 6.maven仓库配置 6.1maven配置:Windows-->Preferences-->maven-->installations-->add-->Directory-->选择本地maven-->Finish-->选中刚刚配置的maven-->Apply 6.2maven .settings⽂件配置:Windows-->Preferences-->maven-->User Settings-->Browse-->选择maven⽂件夹下conf⽂件夹下的setting.xml⽂件-->Update Settings-->Apply-->Apply and Close 6.3maven本地仓库配置:下⾯这个路径就是本地仓库的位置(为了每次新建maven项⽬时,不⽤都到maven中央仓库下载jar包,我们需要给maven配置⼀个本地仓库,⽤到的jar包都会下载到本地仓库,下次新建maven项⽬时,只需要从中央仓库下载本地仓库没有的jar 包即可,节省很多构建maven项⽬的时间) 7.取消校验配置:Windows-->Preferences-->Validation-->Disable All-->Apply-->Apply and Close 8.ftl⽂件⾼亮配置:Windows-->Prefenrences-->General-->Edirors-->Files Associations-->选中*.ftl(若没有则添加⼀个)-->Associated editors-->Add:JSP Editors-->Default-->Apply and Close需要接着设置编码,不然打开时会报错:Windows-->Prefenrences-->General-->Content Types-->JSP-->JSP Fragment-->Add:*.ftl-->Default encording:utf-8-->Apply and Close四、启动项⽬ 1.部署项⽬:右击tomcat-->Add and Remove-->选中项⽬-->Add-->Finish 2.启动项⽬:右击tomcat-->Start/Debug。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
Eclipse搭建Ruby开发环境
下载Eclipse及插件:
RDT(Ruby Development Tool)
目录结构如下:
将下载的RDT文件解压到C:\eclipse对应的features、plugins目录;
Ruby及插件安装配置
下载RUBY及插件
ruby下载地址:
/frs/download.php/18566/ruby186-25.exe
watir下载地址:
/frs/download.php/5677/watir-1.4.1.exe
1)安装配置:
(1)下载Ruby后,双击进行安装,安装过程中选择安装目录(例如:C:\ruby);
(2)下载Watir后,双击进行安装,安装过程中选择安装目录(例如:C:\Program Files\Watir)
2)配置Ruby解释器
(1)打开Eclipse主界面,右击“我的电脑”,点击“窗口”,选择“首选项”,进入对话框中“Ruby>Installed Interpreters”入口,如下:
(2)点击“add”,在对话框中输入信息后,如下:
(3)点击“确定”,完成配置。
An internal error occurred during:"Launching Hello".
Location of launching bundle does not contain@: reference:file:plugins\unching_0.8.0.604272100PRD\
1.安装python与pyqt4,不用单独安装qt。
python推荐安装
2.5.x版。
如果系统之前已经有qt了,pyqt与qt的版本号前两位最好一样,比如pyqt4.4.2与qt4.4.1是关系不大的,但pyqt4.4.x 与qt4.
3.x可能就会有问题。
Python下载地址:/download/
pyqt下载地址:/software/pyqt/download
PS:pyqt自带的example相当赞,推荐看看。
2.eric下载解压后有个install.py,运行python install.py即可。
在Windows下,要求QtCore4.dll 所在的文件夹包含在环境变量PATH中,不然安装时会提示找不到QtCore4.dll。
在PyQt安装时,默认会自动设定好环境变量。
安装完毕后,直接双击eric4.pyw或eric4.bat都可以运行Eric4。
不同之处在于后者会打开一个DOS黑窗口,不会影响性能,最多影响心情。
3.安装后第一次运行Eric4会提示进行配置。
推荐把各配置项都看看,自动补全与智能感知的功能默认都没有打开,而且比较弱,导入.api文件后可以强化。
打开功能并强化的方法:单击菜单Settings->Preferences后弹出对话框,选择左侧的Editor分支下的Autocompletion,全勾上,source选择"from Document and API files"。
然后再在左侧选择Editor分支下的APIs,勾上复选框,语言选择Python,单击按钮Add from installed APIs,把你需要的.api文件都加进去,最后点击Compile APIs,要花几分钟,再点确定就OK。
现在你的Autocomplete的功能就很牛了,虽然仍不完美。
可以把自己的程序生成.api文件并添加。
生成方法是在Project->Source Documentation->Generate API file.
4.如果要用到QtDesigner(界面设计器),要改个脚本。
打开PyQt4\bin\pyuic4.bat,会发现里面执行的是C:\Python2.5\python.exe,但我的python不是装在那,后面参数里的pyuic.py所在的路径也不对,改为正确的路径就OK。
比如我的pyuic4.bat就是:
@python"D:\Program Files\python2.5\Lib\site-packages\PyQt4\uic\pyuic.py"%1%2%3%4 %5%6%7%8%9
已知bug:
1.有时会提示一些错误,一般是Eric4的代码疏忽了一些变量值为None的情况。
点确定就行,不影响使用。
2.一些翻译错误,比如斜体翻译成了意大利体。
一些注意事项:
1.取消多行注释的快捷键Ctrl-Alt-M与千千静听的全局快捷键冲突,可以在Settings->Keyboard shortcuts中更改。
2.在工程中新建代码文件的办法:新建一个文本文件后写入代码,保存为.py文件,然后手动加入到工程中。
很土?也许吧。