如何在干净模式下运行eclipse?如果我们这样做会发生什么?

时间:2010-01-08 19:17:37

标签: java eclipse

如果某些内容无法正常运行或某些插件未在Eclipse中正确加载。我经常建议以干净模式打开Eclipse。那么,如何在干净模式下运行?如果我这样做会怎么样?

11 个答案:

答案 0 :(得分:260)

它的作用:

  

如果设置为“true”,则使用任何缓存的数据   通过OSGi框架和eclipse   运行时将被擦干净。这将   清理用于存储捆绑的缓存   依赖解决和日食   扩展注册表数据。用这个   选项将迫使eclipse   重新初始化这些缓存。

如何使用它:

  • 编辑位于Eclipse安装目录中的eclipse.ini文件,并插入-clean作为第一行。
  • 或编辑用于启动Eclipse的快捷方式,并添加-clean作为第一个参数。
  • 或者创建一个批处理或shell脚本,使用-clean参数调用Eclipse可执行文件。此步骤的优点是您可以保留脚本并在每次要清理工作区时使用它。您可以将其命名为eclipse-clean.bat(或eclipse-clean.sh)。

(来自:http://www.eclipsezone.com/eclipse/forums/t61566.html

其他eclipse命令行选项:http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2Freference%2Fmisc%2Fruntime-options.html

答案 1 :(得分:75)

对于清洁模式:启动平台,如

eclipse -clean

这就是全部。该平台将清除一些缓存的OSGi包信息,如果您手动安装新插件或删除未使用的插件,它会有所帮助或建议使用。

它不会影响任何与工作区相关的数据。

答案 2 :(得分:33)

您可以从命令行以干净模式启动Eclipse:

eclipse -clean

答案 3 :(得分:16)

如其他答案所述,使用-clean选项是可行的方法。

确保在解决问题后将其从.ini或快捷方式中删除。它会导致Eclipse在每次启动时重新评估所有插件,并且可以显着增加启动时间,具体取决于您安装的Eclipse插件数量。

答案 4 :(得分:12)

  • 点击捷径
  • 右键单击 - >特性
  • 在target子句中添加-clean然后启动。

这将需要很长时间才能正常启动,它将重新占用所有资源。

答案 5 :(得分:6)

对于Mac OS X Yosemite,我可以使用open命令。

Usage: open [-e] [-t] [-f] [-W] [-R] [-n] [-g] [-h] [-b <bundle identifier>] [-a <application>] [filenames] [--args arguments]
Help: Open opens files from a shell.
      By default, opens each file using the default application for that file.  
      If the file is in the form of a URL, the file will be opened as a URL.
Options: 
      -a                Opens with the specified application.
      -b                Opens with the specified application bundle identifier.
      -e                Opens with TextEdit.
      -t                Opens with default text editor.
      -f                Reads input from standard input and opens with TextEdit.
      -F  --fresh       Launches the app fresh, that is, without restoring windows. Saved persistent state is lost, excluding Untitled documents.
      -R, --reveal      Selects in the Finder instead of opening.
      -W, --wait-apps   Blocks until the used applications are closed (even if they were already running).
          --args        All remaining arguments are passed in argv to the application's main() function instead of opened.
      -n, --new         Open a new instance of the application even if one is already running.
      -j, --hide        Launches the app hidden.
      -g, --background  Does not bring the application to the foreground.
      -h, --header      Searches header file locations for headers matching the given filenames, and opens them.

这对我有用:

open eclipse.app --args clean

答案 6 :(得分:4)

更容易的选择是 使用./eclipse -clean

答案 7 :(得分:2)

要在启动配置中进行清理,请参阅以下提示:

http://www.eclipsezone.com/eclipse/forums/t83410.html

答案 8 :(得分:2)

对于Windows用户: 您可以像RTA所说的那样或通过命令行执行此操作: 导航到eclipse可执行文件的locaiton然后运行:

 eclipse.lnk -clean

首先使用路径上的“dir”命令检查可执行文件的名称

答案 9 :(得分:1)

在干净模式下运行Eclipse的两种方法。

1)在Eclipse.ini文件中

  • 打开位于Eclipse安装目录中的eclipse.ini文件。
  • 在文件中添加-clean第一行。
  • 保存文件。
  • 重新启动Eclipse。

enter image description here

2)从命令提示符(cmd /命令)

  • 转到Eclipse的安装文件夹。
  • 走Eclipse的路
  • C:.. \ eclipse \ eclipse.exe -clean
  • 按Enter键

enter image description here

答案 10 :(得分:0)

这将清除用于存储包依赖项解析和eclipse扩展注册表数据的缓存。使用此选项将强制Eclipse 重新初始化这些缓存

  1. 打开命令提示符(cmd)
  2. 转到日食应用程序位置(D:\ eclipse)
  3. 运行命令 eclipse -clean