在eclipse插件开发中如何获取特定插件的首选项文件的绝对路径?

How can I get the absolute path of the preference file for a particular plugin in eclipse plugin development?

我想读取特定插件的首选项文件的绝对路径,该文件通常存储在:

Platform.getLocation() + "\.metadata\.plugins\org.eclipse.core.runtime\.settings\myPlugin.prefs"

有什么方法可以使用 eclipse 提供的 Apis 以某种方式直接获取它,而不是对路径的第二部分进行硬编码吗?

这应该给出正确的位置:

Bundle rt = Platform.getBundle(IPreferencesConstants.RUNTIME_NAME);

IPath path = Platform.getStateLocation(rt).append(".settings").append("myPlugin").addFileExtension("prefs");

实际位置计算在org.eclipse.core.internal.preferences.EclipsePreferences