您好,登錄后才能下訂單哦!
在VC2015中讀寫(xiě)INI文件,文件以ANSI格式保存,如果以UTF-8保存,可能會(huì)產(chǎn)生亂碼。
LPCTSTR strfile = _T(".//config.ini"); TCHAR value[255] = { 0 }; //讀鍵值 GetPrivateProfileString( _T("ui"), _T("button1"), _T("default"), value, 200, strfile); //寫(xiě)鍵值對(duì) WritePrivateProfileString(_T("UI"), _T("button1"), _T("啟動(dòng)"), strfile); //讀整數(shù) int left = GetPrivateProfileInt(_T("UI"), _T("left"), 0, strfile); CString strleft; strleft.Format(_T("%d"),left); //讀出某節(jié)的所有鍵值對(duì) TCHAR chSection[1000]; GetPrivateProfileSection(_T("UI"), chSection, 200, strfile); CStringArray list; int len; TCHAR *pBuf = chSection; while ((len = wcslen(pBuf)) > 0) { list.Add(pBuf); pBuf += len + 1; } //讀出某節(jié)的所有鍵名 TCHAR chSectionName[1000]; GetPrivateProfileSectionNames(chSectionName, 200, strfile); CStringArray list1; int len1; TCHAR *pBuf1 = chSectionName; while ((len1 = wcslen(pBuf1)) > 0) { list1.Add(pBuf1); pBuf1 += len1 + 1; }
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。