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' -

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

c# - “System.Security.Cryptography.CryptographicException: Keyset does not exist” when reading private key from remote machine -