How can I copy Eclipse class variables from one workspace to a new workspace?

How can I copy Eclipse class variables from an open workspace to a new workspace? I am using Eclipse Juno (Eclipse Platform 4.2.1 and Java Development Tools Eclipse 3.8.2).

+5
source share
2 answers

Try File β†’ Export β†’ General β†’ Settings and Export All. Then import the settings into the second workspace.

+5
source

Path class variables are stored in at least three places in eclipse:

Workspace level

Preferences- > Java- > Build Path- > Classpath. , , .

Project- > Properties- > Java Build Path. .classpath . .classpath , .

, Eclipse, Run- > Run configurations β†’ ( ) β†’ Classpath. "" , "" "local" "shared", , .

+2

All Articles