首页 > 编程 > .NET > 正文

Asp.net把UTF-8编码转换为GB2312编码

2024-07-10 13:11:41
字体:
来源:转载
供稿:网友
  • 本文来源于网页设计爱好者web开发社区http://www.html.org.cn收集整理,欢迎访问。
  • 最近在做的系统中,碰到了一个问题,交易系统采用的utf-8编码,而一些支持系统使用的是gb2312编码。

    不同编码的页面、脚本之间互相引用,就会产生乱码的问题,解决方法就是统一成一种编码。
    asp.net 中,如果要修改输出页面的编码,可以通过修改web.config中以下配置信息


    <globalization requestencoding="utf-8" responseencoding="utf-8" />
    以上只是修改整体的默认编码,如果只有某个页的编码需要修改,asp.net 中则可以简单的使用下面代码:


    注:加到page_load()事件下面就可以了
    encoding gb2312 = encoding.getencoding("gb2312");
    response.contentencoding = gb2312;
    在非asp.net 应用中,可能你读到的数据是utf-8编码,但是你要转换为gb2312编码,则可以参考以下代码:

    string utfinfo = "document.write(/"alert('你好么??');/");";
    string gb2312info = string.empty;

    encoding utf8 = encoding.utf8;
    encoding gb2312 = encoding.getencoding("gb2312");

    // convert the string into a byte[].
    byte[] unicodebytes = utf8.getbytes(utfinfo);
    // perform the conversion from one encoding to the other.
    byte[] asciibytes = encoding.convert(utf8, gb2312, unicodebytes);
               
    // convert the new byte[] into a char[] and then into a string.
    // this is a slightly different approach to converting to illustrate
    // the use of getcharcount/getchars.
    char[] asciichars = new char[gb2312.getcharcount(asciibytes, 0, asciibytes.length)];
    gb2312.getchars(asciibytes, 0, asciibytes.length, asciichars, 0);
    gb2312info = new string(asciichars);

    当然,其他各种编码之间的转换,跟上述代码也类似的,就不描述了。

    发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表