- Home
- Syllabus
- Schedule/Slides
- Lab/Lecture Notes
- Assignments
- PairEval
- Eclipse
- Message Boards
- Gradebook
CS 2110 - Eclipse Tips
Eclipse is going to be the IDE (Integrated Development Environment) of choice for this course. Go ahead and get it now, but you're not required to use it until Homework 1. If you want to use JCreator or DrJava at first, that's fine. We have already put together some Eclipse distributions with the plugins needed for this class. You may download them here:- Mac: http://www.cs.virginia.edu/~cs201/eclipse-mac.zip
- Win: http://www.cs.virginia.edu/~cs201/eclipse-win.zip
- First be sure that you installed an up-date-date version of the Java SDK (as above)
- Visit external link: http://eclipse.org
- Click on the orange "Download Eclipse" button
- Click on Eclipse IDE for Java Developers link for your operating system.
- What you get, specifically, when you download Eclipse is in fact a zip file. To "install" Eclipse, open the zip file and "extract" the files inside it into a new directory.
- You can put this new directory anywhere you like (or move it after you unzip it). For Windows users, you can put it into C:\Program Files or C:\Eclipse or anywhere else. For Mac users, you can put it in Applications or anywhere else.
Import a zipped project into Eclipse
To do this:
- Download the zip file from the link and save it somewhere on either your local or net drive.
- Once you have your Eclipse workbench open, select File -> Import.
- In the pop-up window, select to import a General -> Existing Projects into Workspace and press Next.
- Choose "Select Archive File" (i.e. from a zip file) and choose Browse and find the zip file you downloaded.
- Finally, push Finish.
Export your project to a zip file
To do this:
- Right-click on your project in the Project Explorer and choose Export.
- Choose General->Archive File. Click Next.
- In the "To archive file:" field, use the Browse button to find a location to save your zip file and to give it a name.
- Choose "Select Archive File" (i.e. from a zip file) and choose Browse and find the zip file you downloaded.
- Finally, push Finish. The zip file is where you told it to save.