當我在D:\ 安裝完IDEA9.0以後,創建了一個工程,發現C:\Users\Administrator\.IntelliJIdea90 居然增大到了500+M,而且隨着使用在逐漸增大,這樣佔用系統盤資源是很是讓人不爽的,那麼如何將其修改到其餘路徑呢?html
方法以下:緩存
找到安裝路徑下有個屬性文件,個人是在 D:\JetBrains\IntelliJ IDEA 9.0\bin 進入bin目錄後找到屬性文件:idea.properties 用記事本或者Editplus 將其打開,找到以下代碼段:ide
[html] view plaincopyidea
# path to IDEA config folder. Make sure you're using forward slashes spa
idea.config.path=${user.home}/.IntelliJIdea90/config .net
# path to IDEA system folder. Make sure you're using forward slashes orm
idea.system.path=${user.home}/.IntelliJIdea90/system htm
# path to user installed plugins folder. Make sure you're using forward slashes blog
idea.plugins.path=${user.home}/.IntelliJIdea90/config/plugins 資源
發現其中包含3個路徑 idea.config.path和idea.system.path和idea.plugins.path 這個就是設置了文件的存放路徑,那麼咱們將 ${user.home} 替換爲咱們自定義的路徑就行了,替換 如:D:/JetBrains ,注意「/」的方向。個人修改後的以下:
[html] view plaincopy
# path to IDEA config folder. Make sure you're using forward slashes
idea.config.path=D:/rogram FilesJetBrains/.IntelliJIdea90/config
# path to IDEA system folder. Make sure you're using forward slashes
idea.system.path=D:/rogram FilesJetBrains/.IntelliJIdea90/system
# path to user installed plugins folder. Make sure you're using forward slashes
idea.plugins.path=D:/rogram FilesJetBrains/.IntelliJIdea90/config/plugins
而後你會發現你的D:/JetBrains/ 路徑下出現了 .IntelliJIdea90的文件夾,修改爲功!之後在使用的時候就不會佔用C盤啦,C盤C:\Users\Administrator\.IntelliJIdea90 的文件夾就能夠刪除了。快去試試吧!
這樣你的緩存文件就被放到D盤中去了,這時我纔想到,在第一次打開IntelliJ IDEA時報了一個錯,說是user.home沒有賦值,我也沒有在乎。其實這裏只要是設置下應該就行了。經驗教訓啊!!但願對你們有好處