信息发布→ 登录 注册 退出

asp.net下UTF-7转GB2312编码的代码(中文)

发布时间:2026-01-11

点击量:
复制代码 代码如下:
/// UTF-7转换GB2312编码的方法
/// </summary>
/// <param name="str7"></param>
/// <returns></returns>
public static string utf72Unicode(string str7)
{
string sUtf7 = "";
if (str7.StartsWith("&"))
{
sUtf7 = "+" + str7.Substring(1);
}
else
{
sUtf7 = str7;
}
byte[] bytes = System.Text.Encoding.GetEncoding("gb2312").GetBytes(sUtf7);
byte[] byteret = System.Text.Encoding.Convert(System.Text.Encoding.UTF7, System.Text.Encoding.Unicode, bytes);
string sret = System.Text.Encoding.Unicode.GetString(byteret);
return sret;
}
标签:# gt  # Unicode  # return  # GetString  # byteret  # GetBytes  # Convert  # amp  # summary  # lt  # param  # UTF-7  # BR  # span  # UTF  # utf72Unicode  # string  # StartsWith  # returns  # static  # public  # GB2312  
在线客服
服务热线

服务热线

4008888355

微信咨询
二维码
返回顶部
×二维码

截屏,微信识别二维码

打开微信

微信号已复制,请打开微信添加咨询详情!