- 论坛徽章:
- 0
|
原帖由 ynchnluiti 于 2009-1-9 01:25 发表 ![]()
我这里能得到结果:
aaa测
奇怪了,我的printf("Output: %s,n= %d,inlen=%d,outlen=%d\n", pout,n,inlen,outlen);这边 pout总是空的,我源码如下,请您看下:
#include <stdio.h>
#include<sys/stat.h>
#include<unistd.h>
#include <stdlib.h>
#include <string.h>
#include <iconv.h>
#include <error.h>
#define BUFFLEN 2048
/* TODO: must implement real string decoder for lineXXX */
void decode_jsstring(char *buf, char *OutStr){
char *p, *q, *temp, *str;
char buf_in[3];
char buf_out[20];
unsigned char c;
iconv_t cd;
char* pin;
char* pout = buf_out;
ssize_t inlen;
ssize_t outlen = 20;
ssize_t n;
bzero(buf_in, sizeof(buf_in));
bzero(buf_out, sizeof(buf_out));
for(p=buf, q=OutStr ; *p ; p++, q++)
{
if(*p == '\\')
switch(*(p+1)){
case 'u':
temp=q;
buf_in[0]=*(p+4);
buf_in[1]=*(p+5);
sscanf(buf_in, "%x", &c);
*q = c;
q++;
buf_in[0]=*(p+2);
buf_in[1]=*(p+3);
sscanf(buf_in, "%x", &c);
*q = c;
p+=5;
str=strndup(temp, q+1-temp);
*(str+2)='\0';
inlen=q+1-temp;
printf("str ,len :%s, %d\n", str,inlen);
if((cd = iconv_open("UTF-8", "UTF-16LE")) == (iconv_t)-1) return NULL;
iconv(cd, &str, &inlen, &pout, &outlen);
printf("Output: %s,n= %d,inlen=%d,outlen=%d\n", pout,n,inlen,outlen);
iconv_close(cd);
//free(str);
break;
case '\0':
iconv_close(cd);
break;
default:
*q = *p;
}
else
*q = *p;
}
*q='\0';
//printf("%s\n",OutStr);
}
int load_file(char *filename, char *buf, int maxlen){
int count;
FILE *fp=fopen(filename, "r");
if(fp==NULL){
printf("cannot open file: [%s]\n", filename);
return -1;
}
for(count=0;count<maxlen;count++){
if(fread(&buf[count], 1, 1, fp)<=0) break;
}
fclose(fp);
return count;
}
int main( int argc, char *argv[]){
int getlen;
char *filename=argv[1];
struct stat statbuf;
int MAX_LOAD_SIZE=0;
if((stat(filename,&statbuf)) == -1){
printf("open file failed");
return -1;
}
MAX_LOAD_SIZE=statbuf.st_size;
char buf[MAX_LOAD_SIZE+1];
//load content
getlen=load_file(filename, buf, MAX_LOAD_SIZE);
if(getlen<=0) exit(1);
buf[getlen]='\0';
//printf("buf: %s\n",buf);
unsigned char *OutStr = (unsigned char *) malloc (getlen * 2);
decode_jsstring(buf, OutStr);
//printf("%s\n",OutStr);
free(OutStr);
return 0;
} |
|