查看单个帖子
旧 2009-05-07, 04:28 PM   #1
yang686526
高级会员
 
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
yang686526 向着好的方向发展
默认 【转帖】string Conversion Using Code Page

string conversion using code page
string conversion using code page
in the hope of converting a string in a windows dwg file from codepage ansi_1252 (the one in the dwg file) into a macintosh compatible string i do this:
void importer:xfread_convertstringwindowtomac(char * psz)
{
unsigned char * p;
wchar_t newchar, thecar;
odresult res;
p= (unsigned char *)psz;
while(*p!=0)
{
thecar= (wchar_t) *p;
res= odcharmapper::codepagetounicode(thecar,(odcodepage id) pdb->getdwgcodepage(), newchar);
res= odcharmapper::unicodetocodepage(newchar, cp_macintosh, thecar);
*p++= newchar;
}
}
the first res is always eok, but the second is always ecodepagenotfound
and no conversion occurs. odcharmapper has been correctly initialized using adinit.dat.
should the above code work or am i doing something wrong ?
thanks for any help..
yang686526离线中   回复时引用此帖
GDT自动化论坛(仅游客可见)