1. 程式人生 > >解決eclipse Invalid Configuration Location .......configuration' is not writable

解決eclipse Invalid Configuration Location .......configuration' is not writable

做安卓開發由於現在一直使用的是Android Studio,但是遇到一個網上的小demo,需要匯入到eclipse中看效果。於是我就開啟eclipse,發現eclipse打不開了。

提示框:

invalid configuration location
The configuration area at ---'C:\Users\ASUS\.eclipse\org.eclipse.platform_4.2.0_1240603304/configuration' is not writable.  
Please choose a writable location using the '-configuration' command line option.
在網上也找到了解決辦法,但是他們說的都太隨意了,xxxx即可。。。

好吧我總結了一下,C:\Users\ASUS\.eclipse\org.eclipse.platform_4.2.0_1240603304目錄下的configuration資料夾不可寫入,不知道什麼原因造成的。可能是安裝資料夾換地方了,系統更新了什麼的。。

解決辦法就是給這個資料夾修改許可權吧,我是以管理員許可權進入命令列,然後輸入

C:\WINDOWS\system32>cd C:\Users\ASUS\.eclipse\org.eclipse.platform_4.2.0_1240603304


C:\Users\ASUS\.eclipse\org.eclipse.platform_4.2.0_1240603304>chmod -R g-w configuration


C:\Users\ASUS\.eclipse\org.eclipse.platform_4.2.0_1240603304>

修改之後就可以啟動eclipse了。