溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

VC中讀寫(xiě)INI文件

發(fā)布時(shí)間:2020-08-06 16:21:14 來(lái)源:網(wǎng)絡(luò) 閱讀:1094 作者:Chinayu2014 欄目:編程語(yǔ)言

在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;
	}


向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI