免费注册 查看新帖 |

Chinaunix

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

[C++] 请教:用c++写的cgi接受到的中文字符为什么是乱码? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-10-14 14:19 |只看该作者 |倒序浏览
比如我接受到的中文字符是 :%B4%F3%BC%D2%BD%FC%C0%B4%BA%C3%C2%F0%A3%BF

请问如何解决这个问题?

论坛徽章:
0
2 [报告]
发表于 2004-10-14 14:21 |只看该作者

请教:用c++写的cgi接受到的中文字符为什么是乱码?

如果要进行转换,请问c++的stl库中是否有现成函数。

还是需要自己编写函数? 有知道的朋友吗?给个代码演示,谢谢。

论坛徽章:
0
3 [报告]
发表于 2004-10-14 14:23 |只看该作者

请教:用c++写的cgi接受到的中文字符为什么是乱码?

你用的服务器是什么?是否在ini或conf中设置了defaultcharset?如果设置了,那么浏览器首先按照服务器的这个信息进行显示,如果不一致,自然就是乱码

论坛徽章:
0
4 [报告]
发表于 2004-10-14 14:25 |只看该作者

请教:用c++写的cgi接受到的中文字符为什么是乱码?

int main()
        {
                char postString[ 1024 ] = "";
                int contentLength = 0;
               
                // variables to store user data
                string dataString = "";
                string name = "";
                string email = "";
                string content = "";
                string getUserIp = "";
                string getNowTime = "";
                time_t currentTime;

                // data was posted
                if ( getenv( "CONTENT_LENGTH" ) )
                        contentLength = atoi( getenv( "CONTENT_LENGTH" ) );
               
                cin.read( postString, contentLength );
                dataString = postString;
               
                // search for first '+' character
                int charLocation = dataString.find( "+" );
               
                // search for next '+' character
                while ( charLocation < string::npos ) {
                        dataString.replace( charLocation, 1, " " );
                        charLocation = dataString.find( "+", charLocation + 1 );
                } // end while
               
                // find location of tname
                int firstStart  = dataString.find( "name=" ) + 5;
                int endFirst = dataString.find( "&email" );
               
                name = dataString.substr( firstStart,
                        endFirst - firstStart );
                       
                // find location of content
                int lastStart = dataString.find( "content=" ) + 8;
                int endLast = dataString.find( "&submit" );
               
                content = dataString.substr( lastStart,
                        endLast - lastStart );
                content = HexToChar(content);
               
                // find location of e-mail address
                int emailStart = dataString.find( "email=" ) + 6;
                int endEmail = dataString.find( "&content" );
               
                email = dataString.substr( emailStart,
                        endEmail - emailStart );
                //
                getUserIp = getenv("REMOTE_ADDR";
                time(&currentTime);
                getNowTime = asctime( localtime( &currentTime ) );


                // output header
                cout << "Content-type: text/html\n\n";
                cout << "<?xml version = \"1.0\"?>;"
                        << "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 "
                        << "Transitional//EN\" \"http://www.w3.org/TR/xhtml1"
                        << "/DTD/xhtml1-transitional.dtd\">;";
                cout << "<html xmlns = \"http://www.w3.org/1999/xhtml\">;"
                        << "<head>;<title>;Contact Information entered"
                        << "</title>;</head>;<body>;";

                if ( name == "" or content == "" {
                        cout << "错误:请您将数据填写完整。";
                        return 0;
                }

                // output to file
                ofstream outFile( "clients.txt", ios::app );
                if ( !outFile ) {
                        cout << "错误:没有文件操作权限";
                        return 0;
                }
                outFile << name << "\t" << email << "\t" << content << "        \n";
               
                // output data to user
                cout << "发表成功<br>;<table>;<tbody>;"
                        << "<tr>;<td>;Name:</td>;<td>;"
                        << name << "</td>;</tr>;"
                        << "<tr>;<td>;email:</td>;<td>;"
                        << email << "</td>;</tr>;"
                        << "<tr>;<td>;content:</td>;<td>;"
                        << content << "</td>;</tr>;"
                        << "<tr>;<td>;ip:</td>;<td>;"
                        << getUserIp << "</td>;</tr>;"
                        << "<tr>;<td>;time:</td>;<td>;"
                        << getNowTime << "</td>;</tr>;"
                        << "</tbody>;</table>;<p align=center>;<A HREF=\"guest.cgi\">;返回</A>;</p>;"
                        << "</body>;\n</html>;\n";
               
                return 0;

        } // end main

论坛徽章:
0
5 [报告]
发表于 2004-10-14 14:26 |只看该作者

请教:用c++写的cgi接受到的中文字符为什么是乱码?

服务器是apache1.3

论坛徽章:
0
6 [报告]
发表于 2004-10-14 16:44 |只看该作者

请教:用c++写的cgi接受到的中文字符为什么是乱码?

1.3版的apache没有这个问题,我说的那是2.0版的。
你的问题在哪里我就不知道了,抱歉:)

论坛徽章:
0
7 [报告]
发表于 2004-10-14 21:06 |只看该作者

请教:用c++写的cgi接受到的中文字符为什么是乱码?

这个好像是被urlencode了,你找找有没有url decode的东西。

论坛徽章:
0
8 [报告]
发表于 2004-10-15 01:26 |只看该作者

请教:用c++写的cgi接受到的中文字符为什么是乱码?

原帖由 "indraw" 发表:
比如我接受到的中文字符是 :%B4%F3%BC%D2%BD%FC%C0%B4%BA%C3%C2%F0%A3%BF

请问如何解决这个问题?


用C语言写CGI有好的书推荐嘛?

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
9 [报告]
发表于 2004-10-15 10:37 |只看该作者

请教:用c++写的cgi接受到的中文字符为什么是乱码?

既然是做 CGI,
就应该知道 CGI 程序收到的内容是经过编码的。
netchong 该用户已被删除
10 [报告]
发表于 2004-10-15 11:10 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP