1
如何以編程方式將程序寫入.cproject文件並回讀(在Eclipse CDT中)?Eclipse CDT:如何寫入.cproject文件並讀回
實現AbstractCPropertyTab的類具有複選框,並且這些類型的名稱和布爾值狀態應保存到.cproject。
如何以編程方式將程序寫入.cproject文件並回讀(在Eclipse CDT中)?Eclipse CDT:如何寫入.cproject文件並讀回
實現AbstractCPropertyTab的類具有複選框,並且這些類型的名稱和布爾值狀態應保存到.cproject。
我解決了我自己的問題。也許有人認爲這很有用。
我將介紹兩種方法:一種用於保存表格上覆選框的選中狀態,另一種用於初始化複選框值。
/**
* Saves checked state of the packages.
*/
private void saveChecked() {
ICConfigurationDescription desc = getResDesc().getConfiguration();
ICStorageElement strgElem = null;
try {
strgElem = desc.getStorage(PACKAGES, true);
} catch (CoreException e) {
e.printStackTrace();
}
TableItem[] items = pkgCfgViewer.getTable().getItems();
for(TableItem item : items) {
if(item != null) {
String chkd;
if(item.getChecked()) {
chkd = "true";
} else {
chkd = "false";
}
try {
String pkgName = item.getText();
strgElem.setAttribute(pkgName, chkd);
} catch (Exception e) {
/*
* INVALID_CHARACTER_ERR: An invalid or
* illegal XML character is specified.
*/
}
}
}
}
/**
* Initializes the check state of the packages from the storage.
*/
private void initializePackageStates() {
ICConfigurationDescription desc = getResDesc().getConfiguration();
ICStorageElement strgElem = null;
try {
strgElem = desc.getStorage(PACKAGES, true);
} catch (CoreException e) {
e.printStackTrace();
}
TableItem[] items = pkgCfgViewer.getTable().getItems();
for(TableItem item : items) {
String value = strgElem.getAttribute(item.getText());
if(value!=null) {
if(value.equals("true")) {
item.setChecked(true);
}
}
}
}