摘要: ARM开发板上iconv_open("utf-8", "gb2312") 调用失败的解决方法应用程序代码如下:static int code_convert(char* from_charset, char* to_charset, char* inbuf, size_t inlen, char* outbuf, size_t outlen){ iconv_t cd; char **pin = &inbuf; char **pout = &outbuf; cd = iconv_open(to_charset, from_charset); 阅读全文
posted @ 2013-05-09 14:32 Charles-Zhang 阅读(2252) 评论(0) 推荐(0) 编辑