Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8292025
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T13:19:37+00:00 2026-06-08T13:19:37+00:00

I have been using the Eclipse platform for Java, javaEE, c++, python and PHP

  • 0

I have been using the Eclipse platform for Java, javaEE, c++, python and PHP – in various school projects. Now that I am a bit more comfortable with it I would like to have some more accurate instructions on how to set it up. I am on windows7 – I had dropped the eclipse itself in my Dropbox and created workspaces as needed but this ended up in a chaos of settings spread here and there and in various bugs (which showed up when I tried to update to Juno – now features like templates are broken).

So what is the recommended way of setting eclipse up for various languages ? Should I
download the latest release, add the plugins I need (cdt, pdt etc) and then create different workspaces for the different languages (like eclipse_python, eclipse_java, eclipse_javaEE, etc )? How do you set Eclipse up ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T13:19:38+00:00Added an answer on June 8, 2026 at 1:19 pm

    I’ve been using eclipse intensively for about 6 years now, and I’d recommend setting up a separate eclipse installation for up to 1 or 2 different programming languages. The reason is that with too many plug-ins, eclipse might consume too much memory or processor time (of course, depending on what the plug-ins do in background and so on…) which may lead to an unresponsive UI.

    I also recommend using separate workspaces for each eclipse installation so that the different configurations/installations don’t interfere with each other.

    I wrote a little command line script which allows me to switch the .metadata directory in a workspace for use with a portable drive (supports two modes: home and portable) maybe someone finds that useful…

    @ECHO OFF
    
    REM This Script is used to ease using eclipse in a portable manner
    REM The script allows to easily switch between several workspace metadata
    
    REM arg1: eclipse runnable
    REM arg2: workspace dir
    REM arg3: metadata mode (portable or home)
    
    :CHECK_ARG_ONE
    IF %1 == "" GOTO :HELP
    IF /i %1 == "/h" GOTO :HELP
    IF /i %1 == "/?" GOTO :HELP
    IF /i %1 == "/help" GOTO :HELP
    IF /i %1 == "-h" GOTO :HELP
    IF /i %1 == "-?" GOTO :HELP
    IF /i %1 == "-help" GOTO :HELP
    IF /i %1 == "--h" GOTO :HELP
    IF /i %1 == "--?" GOTO :HELP
    IF /i %1 == "--help" GOTO :HELP
    
    
    :CHECK_ARG_TWO
    IF %2 == "" GOTO :ERROR_ARG_TWO
    
    
    :CHECK_ARG_THREE
    IF %3 == "" GOTO :ERROR_ARG_THREE
    
    
    :PREPARE
    SET "ECLIPSE_RUNNABLE=%1"
    SET "WORKSPACE_DIR=%2"
    ECHO Working Dir: %CD%
    ECHO Eclipse Runnable: %ECLIPSE_RUNNABLE%
    ECHO Workspace Dir: %WORKSPACE_DIR%
    SET "MD=.metadata"
    SET "MD_HOME=.metadata_home"
    SET "MD_PORTABLE=.metadata_portable"
    PUSHD %WORKSPACE_DIR%
    IF /i %3 == home GOTO :HOME
    IF /i %3 == portable GOTO :PORTABLE
    GOTO :ERROR_ARG_THREE_WRONG
    
    
    :HOME
    ECHO Starting home version
    IF EXIST %MD% (
        IF EXIST %MD_HOME% (
            IF EXIST %MD_PORTABLE% (
                GOTO :ERROR_MD_PORTABLE_EXISTS_ALREADY
            ) ELSE (
                REN %MD% %MD_PORTABLE%
                REN %MD_HOME% %MD%
            )
        )
    ) ELSE (
        IF NOT EXIST %MD_HOME% (
            GOTO :ERROR_MD_HOME_EXISTS_NOT
        ) ELSE (
            REN %MD_HOME% %MD%
        )
    )
    GOTO :RUN
    
    
    :PORTABLE
    ECHO Starting portable version
    IF EXIST "%MD%" (
        IF EXIST "%MD_PORTABLE%" (
            IF EXIST "%MD_HOME%" (
                GOTO :ERROR_MD_HOME_EXISTS_ALREADY
            ) ELSE (
                REN "%MD%" %MD_HOME%
                REN "%MD_PORTABLE%" %MD%
            )
        )
    ) ELSE (
        IF NOT EXIST "%MD_PORTABLE%" (
            GOTO :ERROR_MD_PORTABLE_EXISTS_NOT
        ) ELSE (
            REN "%MD_PORTABLE%" %MD%
        )
    )
    GOTO :RUN
    
    
    :ERROR_ARG_TWO
    ECHO No second argument supplied (workspace dir)
    GOTO :END_ERROR
    
    
    :ERROR_ARG_THREE
    ECHO No third argument supplied (metadata mode - home ^| portable)
    GOTO :END_ERROR
    
    
    :ERROR_ARG_THREE_WRONG
    ECHO Supplied third argument (metadata mode) must match (home ^| portable)
    GOTO :HELP
    
    
    :ERROR_MD_HOME_EXISTS_ALREADY
    ECHO Trying to rename "%MD%", but the metadata directory "%MD_HOME%" already exists!
    GOTO :END_ERROR
    
    
    :ERROR_MD_HOME_EXISTS_NOT
    ECHO Neither "%MD%" nor "%MD_HOME%" exist!
    GOTO :END_ERROR
    
    
    :ERROR_MD_PORTABLE_EXISTS_ALREADY
    ECHO Trying to rename "%MD%", but the metadata directory "%MD_PORTABLE%" already exists!
    GOTO :END_ERROR
    
    
    :ERROR_MD_PORTABLE_EXISTS_NOT
    ECHO Neither "%MD%" nor "%MD_PORTABLE%" exist!
    GOTO :END_ERROR
    
    
    :HELP
    ECHO.
    ECHO Eclipse starter script to switch between home and portable metadata
    ECHO ©Till Kolditz 2011 (till.kolditz@googlemail.com)
    ECHO.
    ECHO This Script is used to ease using eclipse in a portable manner.
    ECHO It allows to easily switch between portable and "home" or stationary
    ECHO workspace metadata.
    ECHO.
    ECHO Usage: run.bat (eclipse_runnable) (workspace_dir) (home ^| portable)
    ECHO.
    ECHO Example1: run.bat eclipse\eclipse.exe workspace home
    ECHO Example2: run.bat "eclipse (x64)\eclipse.exe" workspace_special portable
    GOTO :END
    
    
    :RUN
    POPD
    START "Eclipse" %ECLIPSE_RUNNABLE% -data %WORKSPACE_DIR%
    GOTO :END
    
    
    :END_ERROR
    POPD
    REM PAUSE for debugging
    PAUSE
    GOTO :END
    
    
    :END
    GOTO :EOF
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been using Eclipse to compile and run my development Android app. Now
I have been using Eclipse CDT for some time now, and I love it,
I have been using Eclipse for a long time, the feature that is less
I am a java newbie. I have been using Eclipse to test a simple
I have been successfully debugging several projects using Eclipse 3.4.1 with Zend Debugger and
I have been using gvim for a while and now im trying eclipse and
Ive been using eclipse and my-eclipse to code android and Java projects. I want
I have been using eclipse development environment for almost 3 years. Now I am
I recently started using Eclipse at work for my Java servlet projects. I've been
I have been using eclipse for a couple of weeks now, and all of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.