
vc.net
叶子哟
虽说一把年纪了,却还在手写代码中,雨停了,天睛了,我们又都行了。
展开
-
A very simple MFC class to Encode and Decode an url string
A very simple MFC class to Encode and Decode an url string Tis is my contribution to encode and decode an url string; My o转载 2006-06-15 13:21:00 · 1391 阅读 · 1 评论 -
vc中gbk到utf-8的相互转换
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转载 2006-08-18 14:34:00 · 3295 阅读 · 1 评论