qingcome1 发表于 2012-11-6 18:40:59

LR用 lr_convert_string_encoding中文转码时的一个问题

中文转码代码如下:
char temp;
char hotelname;
    lr_convert_string_encoding(lr_eval_string("{title}"),LR_ENC_SYSTEM_LOCALE, LR_ENC_UTF8 ,"temp");
    strcat(hotelname,lr_eval_string ( "{temp}" ));

replay log显示:
vuser_init.c (260): illegal statement termination
vuser_init.c (260): skipping `char'
vuser_init.c (260): undeclared identifier `temp'
vuser_init.c (261): illegal statement termination
vuser_init.c (261): skipping `char'
vuser_init.c (261): undeclared identifier `hotelname'
vuser_init.c (261): type error: pointer expected
e:\\lr\\22\\\\combined_22.c (5): 7 errors, not writing pre_cci.ci
这是什么问题,请各位指点,谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢

vangion 发表于 2012-11-7 10:36:04

指针的概念都没有搞清楚。

thirfing 发表于 2012-11-7 10:55:07

参数定义不合法

fbccee 发表于 2012-11-8 09:54:42

char temp;
去掉试试看

398073412 发表于 2013-12-11 11:45:57

回复 3# thirfing

版主为什么不能告诉人家怎么定义呢
    你就多打几行子嘛

风行韩国 发表于 2013-12-13 16:52:18

char hotelname;定义错了,char只有一个字节,8位,最多表示256个..4096超了

zeth 发表于 2013-12-13 17:36:14

你把char放到最上面定义试一下估计就好了
页: [1]
查看完整版本: LR用 lr_convert_string_encoding中文转码时的一个问题