简介:
cgi做的嵌入式webserver。
现象:
当从页面的控件上获取汉字时,post过来的数据中,汉字部分是%CE%B4%B1%C8%B6%D4这种形式的。
问题:
这是什么编码?
在cgi程序中一般怎么使用(处理)呢?
------解决方案--------------------
- C/C++ code
#include <string.h> #include <stdio.h> int main(void) { char a[] = {0xC0,0xEE,0xB3,0xD9,0x00}; char b[] = "李迟"; if (strcmp(a,b) == 0) printf("good\n"); else printf("no good\n"); return 0; }