Answers:
IntelliJ 14、15、16
Settings -> Appearance & Behaviour -> System Settings -> Reopen last project on startup
先前:
Settings -> General -> Startup/shutdown -> Reopen last project on startup.
如果出于任何原因需要在不使用UI的情况下更改此设置(例如,如果IDEA在打开项目时挂起),则可以在以下位置找到该设置:
/.IntelliJIdea10/config/options/ide.general.xml
该文件的位置记录在http://devnet.jetbrains.net/docs/DOC-181中
您需要更改(或添加)的特定设置是
<application>
<component name="GeneralSettings">
<option name="reopenLastProject" value="false" />
</component>
</application>
在最新版本的IntelliJ中,此文件在Mac上的位置为
~/Library/Preferences/IntelliJIdea2018.2/options/ide.general.xml
如果启用了设置存储库,那么可以在这里找到它:
〜/ .IntelliJIdea $ {idea_version} /config/settingsRepository/repository/ide.general.xml
~/Library/Preferences/IntelliJIdea2017.2/options/ide.general.xml
<option name="reopenLastProject" value="false" />
<option name="openPaths">
文件中的标签recentProjects.xml
对我来说很有效。
IntelliJ 2016.x现在将此信息保存在其自己的文件中。在带OSX的MacBook Pro上:
~/Library/Preferences/IntelliJIdea2016.2/options/recentProjects.xml
如果IntelliJ在启动时挂起,则强制退出应用程序,然后将此文件重命名为“ recentProjects.xml.bak”。
重新启动后,您将获得用于创建或打开项目的选项屏幕。
注意:实际路径可能会有所不同,具体取决于您安装的IntelliJ版本。
IntelliJIdea2016.1/ IntelliJIdea2016.2/ IntelliJIdea2016.3/
<option name="openPaths">
要阻止其在启动时打开的标签下的行
我使用以下路径在VI中打开了该文件:
〜/ Library / preferences / IdeaIC13 / options / ide.general.xml
并更改此值:
<option name="reopenLastProject" value="true" />
至
<option name="reopenLastProject" value="false" />
只需勾选复选框:
Settings -> General -> Reopen last project on startup
这是针对想法10的。
在上WINDOWS
,路径为:
C:\Users\[USERNAME]\.IntelliJIdea[VERSION]\config\options\ide.general.xml
然后设置reopenLastProject
为false
,即:
<application>
<component name="GeneralSettings">
<option name="reopenLastProject" value="false" />
</component>
</application>
PS:如果该选项不存在,则可能必须创建该选项。
对于最新版本的Android Studio IDE
只需按照以下步骤
文件>设置>系统设置>单击重新打开上一个项目复选框>应用或确定