Click here to Skip to main content
Click here to Skip to main content

Using Unicode in INI files

By , 15 Dec 2004
 

Introduction

This article shows how to use Unicode in an INI file. Even though we call WritePrivateProfileStringW API function for using Unicode in an INI file, an INI file is not saved as Unicode but saved as ANSI. However, the small code that I show here will let you use that.

What does WritePrivateProfileStringW do?

From my experience, I explain that WritePrivateProfileStringW function copies a string encoded to Unicode (UTF18-little Endian) into an INI file which can be written with UTF18-little Endian encoded character. If the INI file for an application does not exist, the API function will create a plain text file and write a section name and a key name and so on. The plain text file is not a Unicode format text file but an ANSI format text file. So a Unicode format file has to have the "BOM" in the beginning of a text file. When the Unicode format file already exists as INI file, this function works well. After all, the function does not prepare it, and somebody has to prepare it.

How is the file created?

  • Manually creating the INI file
  • Preparing the INI file by coding

Manually creating the INI file

This is the simplest way. We save the ANSI INI file already existing as UTF16-little Endian using a text editor such as Notepad. This method is suitable for trials.

Preparing the INI file by coding

The difference between a Unicode and an ANSI format file is whether a file has the BOM in the beginning of the file or not. Besides, the BOM has to be UTF16-little Endian's BOM. So, we have to create a plain file and then add the BOM of UTF16-little Endian into the beginning of the file before using initially WritePrivateProfileW.

In the following code, when the INI file is not found, the new INI file is created. Do notice the code uses Generic Text Mappings.

LPTSTR pszINIFilePath;
::GetModuleFileName(NULL, pszINIFilePath, MAX_PATH);
::PathRemoveFileSpec(pszINIFilePath);
::StrCat(pszINIFilePath, _T("\\App.ini"));

LPTSTR pszSectionB = _T("[StringTable]"); // section name with bracket 
LPTSTR pszSection = _T("StringTable"); // section name without bracket
LPTSTR pszKey = _T("String");

if(!::PathFileExists(pszINIFilePath))
{

    // UTF16-LE BOM(FFFE)
    WORD wBOM = 0xFEFF;
    DWORD NumberOfBytesWritten;

    HANDLE hFile = ::CreateFile(pszINIFilePath, GENERIC_WRITE, 0, 
                   NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL);
    ::WriteFile(hFile, &wBOM, sizeof(WORD), &NumberOfBytesWritten, NULL);
    ::WriteFile(hFile, pszSectionB, (_tcslen(pszSectionB)+1)*(sizeof(TCHAR)), 
                &NumberOfBytesWritten, NULL);
    ::CloseHandle(hFile);
}
 
WritePrivateProfileString(pszSection, pszKey, _T(""), pszINIFilePath);

Points of Interest

In the code, I added not only the BOM but also the first section name into the file by using WriteFile() function. This coding can avoid making an empty line in the first line of the file.

Why is it only UTF16-little Endian?

In Notepad included with Windows, we can choose 3 encoding formats in Unicode. These are "Unicode" (UTF16-little Endian), "Unicode big Endian" (UTF16-big Endian), and "UTF-8". We can use only UTF16-little endian of these formats as an INI file format. The other encodings do not work correctly (you examine it once). Probably, the reason is that Windows NT, 2000 or XP uses the encoding internally. This is why Windows particularly names UTF16-little Endian "Unicode".

Reference

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Mana#
Japan Japan
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberMember 356017731 Jan '11 - 6:53 
GeneralRe: My vote of 5memberMana#18 Jun '11 - 4:55 
GeneralRe: My vote of 5memberRoger Gonsalves27 Sep '11 - 16:10 
GeneralDownload source filememberDaniel Xu7 Jan '08 - 15:03 
AnswerRe: Download source filememberMana#12 Jan '08 - 2:01 
Generalgood onememberpaulgafa28 Jun '07 - 4:44 
Generaltypo UTF18membervirtualnik8 May '07 - 4:53 
GeneralRe: typo UTF18memberpeterchen22 Aug '08 - 4:09 
AnswerRe: typo UTF18memberMana#24 Aug '08 - 1:42 
GeneralRe: typo UTF18memberchandanadhikari19 Jun '11 - 19:14 
Generalnice article...membernsh_enp10 Jul '06 - 14:21 
GeneralThanksmemberMana#11 Jul '06 - 5:31 
GeneralVery good!memberfredzhu24 Mar '05 - 14:27 
GeneralThanksmemberMana#3 Apr '05 - 17:50 
GeneralJust what I neededmemberRobert Edward Caldecott20 Dec '04 - 1:00 
GeneralThank youmemberMana#25 Dec '04 - 5:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 15 Dec 2004
Article Copyright 2004 by Mana#
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid