IntelliJ IDEA启动时如何防止打开最后一个项目?

发布于 2024-10-22 22:47:52 字数 74 浏览 4 评论 0原文

默认情况下,IntelliJ IDEA 在启动时打开最后一个项目。

如何在不打开上一个项目的情况下启动IntelliJ?

By default IntelliJ IDEA opens the last project when starting.

How to start IntelliJ without opening last project?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(15

初见 2024-10-29 22:47:53

WINDOWS上,路径为:

C:\Users\[USERNAME]\.IntelliJIdea[VERSION]\config\options\ide.general.xml

然后设置reopenLastProjectfalse,即:

;
<组件名称=“常规设置”>
<选项名称=“reopenLastProject”值=“false”/>


PS:如果该选项不存在,您可能需要创建该选项。

On WINDOWS, the path is:

C:\Users\[USERNAME]\.IntelliJIdea[VERSION]\config\options\ide.general.xml

Then set reopenLastProject to false, i.e.:

<application>
<component name="GeneralSettings">
<option name="reopenLastProject" value="false" />
</component>
</application>


PS: You may have to create the option if it doesn't exist.

一绘本一梦想 2024-10-29 22:47:53

对于最新版本的 Android Studio IDE

只需按照以下步骤操作

File >设置>系统设置>单击重新打开最后一个项目复选框>申请或确定

For The latest version of Android Studio IDE

Just follow this steps

File > Settings > System Settings > click Reopen the last project Check-box > Apply or Okay

擦肩而过的背影 2024-10-29 22:47:53

要通过 IntelliJ IDEA 2019.1 Community Edition 中的配置文件管理此设置,请前往 ~/Library/Preferences/IdeaIC2019.1/options/ 以使用 Patrick Wilkes 的答案和 ide.general.xml 编辑。

To manage this setting through the config file in IntelliJ IDEA 2019.1 Community Edition, head to ~/Library/Preferences/IdeaIC2019.1/options/ to use Patrick Wilkes' answer with the ide.general.xml edit.

萌酱 2024-10-29 22:47:52

IntelliJ 14、15、16:

Settings -> Appearance & Behaviour -> System Settings -> Reopen last project on startup

以前:

Settings -> General -> Startup/shutdown -> Reopen last project on startup.

IntelliJ 14, 15, 16:

Settings -> Appearance & Behaviour -> System Settings -> Reopen last project on startup

Previously:

Settings -> General -> Startup/shutdown -> Reopen last project on startup.
揪着可爱 2024-10-29 22:47:52

如果出于任何原因您需要在不使用 UI 的情况下更改此设置(例如,如果 IDEA 在打开项目时挂起),您可以在例如中找到该设置

/.IntelliJIdea10/config/options/ide.general.xml

文件的位置记录在 http://devnet.jetbrains.net/docs/DOC-181

您需要更改(或添加)的具体设置Mac

<application>
  <component name="GeneralSettings">
    <option name="reopenLastProject" value="false" />
  </component>
</application>

如果您启用了

在最新版本的 IntelliJ 中,该文件在 Mac 上的位置是

~/Library/Preferences/IntelliJIdea2018.2/options/ide.general.xml

Settings Repository

设置存储库,则可以在此处找到它:

~/.IntelliJIdea${idea_version}/config/settingsRepository/repository/ ide.general.xml

If for any reason you need to change this setting without using the UI (for example if IDEA is hanging when it opens your project), you can find the setting in eg

/.IntelliJIdea10/config/options/ide.general.xml

The location of the file is documented in http://devnet.jetbrains.net/docs/DOC-181

The specific setting you need to change (or add) is

<application>
  <component name="GeneralSettings">
    <option name="reopenLastProject" value="false" />
  </component>
</application>

Mac

In the latest version of IntelliJ, the location of this file on a Mac is

~/Library/Preferences/IntelliJIdea2018.2/options/ide.general.xml

Settings Repository

If you have the settings repository enabled, then it can be found here:

~/.IntelliJIdea${idea_version}/config/settingsRepository/repository/ide.general.xml

潜移默化 2024-10-29 22:47:52

如果您只是尝试启动 IntelliJ 一次而不打开任何以前的项目(例如,由于 IntelliJ 在特定项目中崩溃),您可以从命令行使用 dontReopenProjects 选项。

示例:

C:\dev\ide\IntelliJ IDEA Community Edition 2020.2\bin\idea64.exe dontReopenProjects

注意:您还可以使用许多其他有用的命令行选项,例如 noSplashdisableNonBundledPlugins


源 CLI 文档(感谢 mikebridge 在此答案的评论中指出):https://www.jetbrains.com/help/ idea/working-with-the-ide-features-from-command-line.html#arguments

If you're just trying to start up IntelliJ once without opening any previous projects (eg due to IntelliJ crashing with a specific project), you can use the dontReopenProjects option from the command line.

Example:

C:\dev\ide\IntelliJ IDEA Community Edition 2020.2\bin\idea64.exe dontReopenProjects

Note: There are also a bunch of other useful command line options you can use, such as noSplash and disableNonBundledPlugins.


Source CLI documentation (credit to mikebridge for pointing it out in a comment on this answer): https://www.jetbrains.com/help/idea/working-with-the-ide-features-from-command-line.html#arguments

黎夕旧梦 2024-10-29 22:47:52

最快的方法是

ctrl+shift+a(窗口)

cmd+shift+a(苹果机)

然后输入

启动时重新打开上一个项目

在此处输入图像描述

The fastest way is to

ctrl+shift+a (windows)

cmd+shift+a (mac)

and then just type

reopen last project on startup

enter image description here

深居我梦 2024-10-29 22:47:52

在 Mac 上,该文件位于 ~/Library/Preferences/IntelliJIdea12/options/ide.general.xml

然后将 reopenLastProject 选项设置为 false代码>.

On the Mac the file is located at ~/Library/Preferences/IntelliJIdea12/options/ide.general.xml

And then set the reopenLastProject option to false.

温柔少女心 2024-10-29 22:47:52

对于 Mac 10.9 (Mavericks) 上的 Intellij 13,它也位于 ~/Library/Preferences/IntelliJIdea13/options/ide.general.xml。 (我没有足够的声誉来投票支持尼古拉斯的答案)。

For Intellij 13 on Mac 10.9 (Mavericks), it is located at ~/Library/Preferences/IntelliJIdea13/options/ide.general.xml as well. ( I don't have enough reputation to vote up Nicholas' answer ).

你与昨日 2024-10-29 22:47:52

IntelliJ 2016.x 现在将此信息保留在自己的文件中。
在我的 MacBook Pro w/OSX 上:

~/Library/Preferences/IntelliJIdea2016.2/options/recentProjects.xml

如果 IntelliJ 在启动时挂起,请强制退出应用程序,然后将此文件重命名为“recentProjects.xml.bak”之类的名称。

重新启动后,您将看到用于创建或打开项目的选项屏幕。

注意:实际路径可能会有所不同,具体取决于您安装的 IntelliJ 版本,例如。

IntelliJIdea2016.1/ IntelliJIdea2016.2/ IntelliJIdea2016.3/

IntelliJ 2016.x keeps this information in its own file now.
On my MacBook Pro w/OSX:

~/Library/Preferences/IntelliJIdea2016.2/options/recentProjects.xml

If IntelliJ hangs on startup, force quit the app then rename this file to something like "recentProjects.xml.bak."

Upon restart you'll get the option screen for creating or opening a project.

Note: the actual path may vary depending upon which version of IntelliJ you have installed eg.

IntelliJIdea2016.1/ IntelliJIdea2016.2/ IntelliJIdea2016.3/

雪化雨蝶 2024-10-29 22:47:52

只需勾选复选框即可:

Settings -> General -> Reopen last project on startup

这是针对想法 10 的。

Just tick the checkbox:

Settings -> General -> Reopen last project on startup

This is for idea 10.

我的黑色迷你裙 2024-10-29 22:47:52

我使用以下路径在 VI 中打开此文件:

~/Library/preferences/IdeaIC13/options/ide.general.xml

并将此值更改为

<option name="reopenLastProject" value="true" />

<option name="reopenLastProject" value="false" />

I opened this file in VI using this path:

~/Library/preferences/IdeaIC13/options/ide.general.xml

and changed this value:

<option name="reopenLastProject" value="true" />

to

<option name="reopenLastProject" value="false" />
阳光下慵懒的猫 2024-10-29 22:47:52

对于新的 IntelliJ 版本 [例如 2020.3.2 ...]

在此处输入图像描述

For new IntelliJ versions [like 2020.3.2 ...]

enter image description here

2024-10-29 22:47:52

在 IntelliJ 14 中是:

设置->外观&行为->系统设置->启动/关闭->
启动时重新打开上一个项目

您可以通过按 CTL+ALT+S 打开设置窗口。

In IntelliJ 14 it is:

Settings -> Appearance & Behaviour -> System Settings -> Startup/Shutdown ->
Reopen last project on startup

You can bring the settings window by pressing CTL+ALT+S.

墨小沫ゞ 2024-10-29 22:47:52

Intellij IdeaAndroid Studio

从菜单中转到:

File > 设置 > 外观和外观行为> 系统设置

禁用该选项:

启动时重新打开上一个项目

图像描述介绍

Intellij Idea or Android Studio:

From the menu go to :

File > Settings >Appearence & Behavior > System Settings.

disable the option:

Reopen last project on startup

introducir la descripción de la imagen aquí

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文