java - How to retrieve the eclipse launch location? -


i need access eclipse.ini file . since location of eclipse.ini same location of eclipse.exe , there way access location through java code ?

you can eclipse install directory location in plugin with:

location location = platform.getinstalllocation();  url locationurl = location.geturl(); 

the eclipse.ini should in directory.


Comments

Popular posts from this blog

android - Why am I getting the message 'Youractivity.java is not an activity subclass or alias' -

java - Log4j2 configuration not found when running standalone application builded by shade plugin -

python - How do I create a list index that loops through integers in another list -