我想用这个函数将unicode字符串转换为ANSI:
function convertU(ws : widestring) : string; begin result := string(ws); end;
我还使用此代码来设置要转换的正确代码页.
initialization SetThreadLocale(GetSystemDefaultLCID); GetFormatSettings;
它在VCL主线程中运行良好,但在TThread中运行不正常,哪里有一些问题标记’?’作为函数convertU的结果.
为什么不在TThread?
更好的选择是完全不依赖于SetThreadLocale().通过直接调用WideCharToMultiByte()进行自己的转换,以便指定要转换为的特定Ansi代码页.