免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2895 | 回复: 1
打印 上一主题 下一主题

在linux下的中文转utf8成功,在hp unix失败了 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-10-06 16:33 |只看该作者 |倒序浏览
int Convert(char* encFrom, char* encTo, const char* in, int in_len, char* out, int out_len)
{
        char* sin, *sout;
        int ret;
        iconv_t c_pt;
        printf("1\n");

        if((c_pt = iconv_open(encTo, encFrom)) == (iconv_t)-1)
        {
                printf("c_pt == -1\n");
                return GBK_TO_UTF8_ERROR;
        }
        /*iconv(c_pt, NULL, NULL, NULL, NULL);*/

        printf("2\n");


        sin = (char*)in;
        sout = (char*)out;
        ret = iconv(c_pt, &sin, (size_t*)&in_len, &sout, (size_t*)&out_len);

        printf("3\n");


        if(ret == -1)
        {
                printf("iconv error\n");
                iconv_close(c_pt);
                return GBK_TO_UTF8_ERROR;
        }

        printf("4\n");

        iconv_close(c_pt);
        return SUCCEED;
}



在用hp15CN代理gbk后,

#0  0xc0000000000325f8 in _instantiate_iconv+0x58 () from /usr/lib/nls/iconv/pa20_64/methods.2/lhp15utf8.sl
(gdb) where
#0  0xc0000000000325f8 in _instantiate_iconv+0x58 () from /usr/lib/nls/iconv/pa20_64/methods.2/lhp15utf8.sl
#1  0xc000000000215200 in iconv+0x30 () from /usr/lib/pa20_64/libc.2
#2  0x4000000000018778 in Convert+0x100 ()
#3  0x400000000001cccc in ProcessFlightSupply+0x34c ()
#4  0x400000000000e07c in GetFlightSupplies+0x127c ()
#5  0x4000000000017e04 in main+0x11b4 ()


调用函数
Convert("hp15CN", "utf8", fli_sup->supplies_desc, sizeof(fli_sup->supplies_desc)+1, temp, sizeof(temp));

在linux是用gbk代替hp15CN的

高手指点下从数据库select出来的中文怎么在hp unix转换成utf8,谢谢了

[ 本帖最后由 tempname_cn 于 2008-10-6 16:35 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2008-10-07 15:34 |只看该作者
自己顶
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP