Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[疑难] 求人把blogcn的模版修改成UTF-8编码的

[复制链接]
xtao 发表于 2007-8-10 15:36:32 | 显示全部楼层 |阅读模式
SSAY 发表于 2007-8-10 15:55:55 | 显示全部楼层
1.打开文件后找到有记录这个模板信息的txt文本,打开
2.同学们注意!关键了!
  打开文本后,点“文件另存为”先不要忙着保存,请看一下“另存为”对话框的第三个选项——“编码(E)”
  在这一栏里选择“utf-8”,然后另存为一个新的txt文本
3.安装模板,这我就不说了吧,:-)呵呵
回复

使用道具 举报

SSAY 发表于 2007-8-10 15:57:53 | 显示全部楼层

VC 实现 汉字 GBK(GB2312) 转化为 UTF8 编码

void ConvertGBKToUtf8(CString& strGBK)
{
    int len=MultiByteToWideChar(CP_ACP, 0, (LPCTSTR)strGBK, -1, NULL,0);
    unsigned short * wszUtf8 = new unsigned short[len+1];
    memset(wszUtf8, 0, len * 2 + 2);
    MultiByteToWideChar(CP_ACP, 0, (LPCTSTR)strGBK, -1, wszUtf8, len);

    len = WideCharToMultiByte(CP_UTF8, 0, wszUtf8, -1, NULL, 0, NULL, NULL);
    char *szUtf8=new char[len + 1];
    memset(szUtf8, 0, len + 1);
    WideCharToMultiByte (CP_UTF8, 0, wszUtf8, -1, szUtf8, len, NULL,NULL);

    strGBK = szUtf8;
    delete[] szUtf8;
    delete[] wszUtf8;
}
回复

使用道具 举报

 楼主| xtao 发表于 2007-8-11 15:18:08 | 显示全部楼层
谢谢
试一下先
回复

使用道具 举报

lilovelo 发表于 2007-8-11 16:12:41 | 显示全部楼层
(GBK<-->UTF8)编码转换工具
https://discuz.dismall.com/viewthread.php?tid=639943
回复

使用道具 举报

risk 发表于 2007-8-11 17:20:19 | 显示全部楼层
原帖由 lilovelo 于 2007-8-11 16:12 发表
(GBKUTF8)编码转换工具
https://discuz.dismall.com/viewthread.php?tid=639943


摸板似乎不能通过那个转
回复

使用道具 举报

koic 发表于 2007-8-12 05:52:16 | 显示全部楼层

呵呵

咱也才鸟    学习学习先
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-12-29 00:54 , Processed in 0.026421 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表