Eclipse tutoria...login
Eclipse tutorial
author:php.cn  update time:2022-04-13 14:09:28

Eclipse workspace


The eclipse workspace contains the following resources:

  • Project

  • File

  • Folder

You can generally set the workspace when the project is started. You can set it as the default workspace. There is no need to configure it after the next startup:

1362387429_6854

Workspace (Workspace) has an obvious hierarchical structure. The project is at the top level, and there can be files and folders in the project.

The plug-in can manage the resources of the workspace through the API provided by the resource plug-in.

Manage Workspace(Workspace)

Users create and manage resources in the workspace by using views, editors and wizard functions. The Project Explorer view among many views displays the contents of the workspace. The view that displays the contents of the project workspace is the Project Explorer view.


eclipse_workspace_pe

#File Creation Wizard (File > New > File).

eclipse_workspace_new_file

Folder creation wizard (File > New > Folder).

eclipse_workspace_new_folder

Workspace settings

Select "Window" => "preferences..." => "General" =>"Workspace" on the menu bar , the setting instructions are as follows:

1363013170_2649

Eclipse switch workspace (workspace)

Eclipse can switch workspace by selecting "File" in the menu bar => "switch workspace":

20140312232833156

php.cn