MFC學習筆記之XML 檔案操作類
可擴充套件標記語言XML(Extend Mark Language)是一種描述資料和資料結構的語言,XML資料可以儲存在任何可以儲存文字的文件中。HTML用來描述外觀,而XML從一開始就被設計為表示原始資訊而完全忽略資料呈現方式。XML之所以功能強大,是因為計算機行業已經把XML為資料交換的標準,並提供了相當數量的支援工具。
竊認為,XML最激動人心的應用是可以在分散式應用中作為訊息傳遞的封裝格式(SOAP訊息),最常用的是作為應用程式的設定選項儲存。
本文實現了一個CXMLFile類來操作XML檔案,對應用程式設定選項的儲存作了特別的介面支援,並實現了一個CPersistentTreeCtrl(一個可儲存標籤項的樹控制元件)來演示CXMLFile類的用法。
//得到節點值(長整型)
long GetLong(const char* cstrBaseKeyName,const char* cstrValueName, long lDefaultValue);
//設定節點值(長整型)
long SetLong(const char* cstrBaseKeyName,const char* cstrValueName, long lValue);
//得到節點值(字串)
std::string GetString(const char*cstrBaseKeyName,
const char*cstrValueName,
const char*cstrDefaultValue);
//設定節點值(字串)
long SetString(const char* cstrBaseKeyName,const char* cstrValueName, const char* cstrValue);
//得到節點屬性
std::string GetAttribute(const char*cstrBaseKeyName, const char* cstrValueName,
const char* cstrAttributeName,const char* cstrDefaultAttributeValue);
//設定節點屬性
long SetAttribute(const char*cstrBaseKeyName, const char* cstrValueName,
constchar* cstrAttributeName, const char* cstrAttributeValue);
//得到節點值
long GetNodeValue(const char*cstrBaseKeyName, const char* cstrValueName,
constchar* cstrDefaultValue, std::string& strValue, const char*cstrAttributeName,
constchar* cstrDefaultAttributeValue,std::string& strAttributeValue);
//設定節點值
long SetNodeValue(const char*cstrBaseKeyName, const char* cstrValueName,
constchar* cstrValue=NULL, const char* cstrAttributeName=NULL,
constchar* cstrAttributeValue=NULL);
//刪除某節點和其所有子節點
long DeleteSetting(const char*cstrBaseKeyName, const char* cstrValueName);
//得到某節點的子節點的鍵值
long GetKeysValue(const char*cstrBaseKeyName,
std::map&keys_val);
//得到某節點的子節點的鍵名
long GetKeys(const char* cstrBaseKeyName,
std::vector&keys);
//儲存XML檔案
bool save(const char* filename=NULL);
//裝載XML檔案
bool load(const char* filename, const char*root_name="xmlRoot");
//不儲存改變
void DiscardChanges();
//清空內容
void clear();
一個簡單的寫入、儲存例子:
CXMLFile xmlFile;
xmlFile.load("file.xml ");
xmlFile.SetLong("Student/情況","年齡", 24);
xmlFile.SetString("Student /個況","籍貫", "浙江嵊州");
xmlFile.SetString("Student /個況","性別", "男");
xmlFile.save();
一個簡單的讀取例子:
CXMLFile xmlFile;
xmlFile.load("file.xml ");
long age= xmlFile.GetLong("Student/個況","年齡", 25;
std::string strHomeplace =xmlFile.GetString("Student /個況", "籍貫", "浙江嵊州");
std::string strSex =xmlFile. GetString("Student /個況", "性別", "男");
CPersistentTreeCtrl類主要有兩個成員函式:
//load from a XML file
bool Load(const char* filename, const char*tree_name="TreeName", bool bImage=false);
//save to a XML file
bool Save(const char* filename, const char*tree_name="TreeName", bool bImage=false);
分別用於儲存和裝入樹的節點,存取的效率可能不高,權作演示吧。