How to set up Java to use user specific certificates for Eclipse?

旧城冷巷雨未停 提交于 2019-11-30 07:12:23
Martin Carpenter

Use a user-specific configuration.

Setting the private configuration area location

The default location for a private configuration area is:

user-home-dir/.eclipse/<product-id>_<product-version>/configuration

The user home dir is determined by the user.home Java system property. The product id and version are obtained from the product marker file .eclipseproduct under the Eclipse install.

you could store all those information into a file and read from it and set each variable in the code using:

System.setProperty(...);

Let me know when that solves your problem.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!