因此,我可以導出我的RCP應用程序,並在我的導出目錄中的.settings文件夾下找到特定於我的應用程序的.pref文件。在調試過程中,eclipse的首選項文件存儲在哪裏?
當我在eclipse IDE中運行/調試應用程序時,存儲的應用程序.prefs文件在哪裏?例如,我從eclipse IDE運行我的程序,它執行下面的操作。我在哪裏可以找到這個偏好文件?
Preferences prefs = ConfigurationScope.INSTANCE.getNode("hostname.controllers");
prefs.putInt("numCtrlrs", 2);
prefs.put("ctrlr1", "adamctrlr.ohmasd.org");
prefs.put("ctrlr2", "mnet.ohmasd.org");
try{
prefs.flush();
} catch (BackingStoreException e) {
e.printStackTrace();
}