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

Posted

技术标签:

【中文标题】如何在干净模式下运行eclipse?如果我们这样做会发生啥?【英文标题】:How to run eclipse in clean mode? what happens if we do so?如何在干净模式下运行eclipse?如果我们这样做会发生什么? 【发布时间】:2011-01-03 01:22:14 【问题描述】:

如果我的 Eclipse 中某些东西不能正常工作或某些插件没有正确加载,我经常会收到建议以干净模式打开 Eclipse。

那么,如何在干净模式下运行呢?如果我这样做会怎样?

【问题讨论】:

【参考方案1】:

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

1) 在 Eclipse.ini 文件中

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

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

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

【讨论】:

【参考方案2】:

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

    打开命令提示符 (cmd) 转到 Eclipse 应用程序位置 (D:\eclipse) 运行命令eclipse -clean

【讨论】:

【参考方案3】:

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

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

【讨论】:

【参考方案4】:

更简单的选择是 使用./eclipse -clean

【讨论】:

【参考方案5】:

它的作用:

如果设置为“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

【讨论】:

我推荐 (2),使用 clean 选项创建一个“第二个”eclipse 快捷方式。您不希望它在 eclipse.ini 文件中,因为这会禁用有用的 OSGi 缓存并增加 eclipse 启动时间。仅在您认为必须使用时才使用 clean。 @Andreas_D,所以基本上你应该推荐(3) @SpaceRocker - 我为什么要这样做?推荐任何你喜欢的。我一直在推荐“2”的变体,“eclipse clean”的第二个快捷方式(当然,对于 Windows 环境) 在我的ini文件的ubuntu中,第一行是'-startup'我想我需要删除它以防我想在干净模式下运行它? (并替换为 -clean)? 我编辑了您的帖子,因为我错误地投了反对票,这是对您的帖子投赞成票的唯一可能性(删除空行)。对于这个微不足道的更改,我们深表歉意,但投票已锁定。【参考方案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

【讨论】:

【参考方案7】:

对于 Windows 用户: 您可以按照 RTA 所说的或通过命令行执行以下操作: 导航到 eclipse 可执行文件的位置,然后运行:

 eclipse.lnk -clean

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

【讨论】:

【参考方案8】: 点击快捷方式 右键->属性 在目标子句中添加 -clean 然后开始。

正常启动需要很长时间,并且会刷新所有资源。

【讨论】:

【参考方案9】:

对于清洁模式:启动平台喜欢

eclipse -clean

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

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

【讨论】:

喜欢它不会改变工作区数据的信息!【参考方案10】:

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

eclipse -clean

【讨论】:

以上是关于如何在干净模式下运行eclipse?如果我们这样做会发生啥?的主要内容,如果未能解决你的问题,请参考以下文章

mac下eclipse怎么卸载干净

如何彻底删除eclipse

如何停止在 Eclipse 下运行的程序?

请问在Eclipse下如果对jsp文件进行可视化编辑??

如何正确安全干净地卸载Tomcat以及Eclipse中Tomcat的配置

怎么卸载maya2018