In Chinese on the Symbian program user interface, if it is part of the program output, for example, to the string is assigned to Chinese, it can be displayed directly. But more, the user interface is defined in the resource file. Symbian resource files are stored in a file that is extension in RSS, such as menu items, buttons text, etc. are defined in this file. . But this file does not support Chinese display, if you change the text directly to Chinese, then the program execution will be garbled. Although Chinese is not supported, you can use unicode to display Chinese information, we only need to add the character_set utf8 line on the RSS file header, and then replace all Chinese text Unicode. That is to say, our resource file must support Unicode, and then assign the corresponding string with the Unicode of the corresponding Chinese.
But how do you get a Chinese corresponding to Unicode text string? The easiest way is to use our text editing tool, such as EMEDITOR, the method used is to write under the ANSI encoding mode, and then save it as unicode, and then open the text in it again. The Unicode is turned to our .RSS file. If you need to process Chinese strings in the program, such as SMS content, etc., then you only need to remember to support Unicode in the Symbian OS, so we only need to uniformly encode the required text unified use of Unicode. Of course, it is necessary to handle the English characters, because the English characters are simply changed from 1byte to 2Byte, high byte usage 00 instead, this and Chinese coding methods are different. Welcome everyone to discuss the specific content, you can leave a message, you can also give me E_mail :)