加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
TransFormUtils.h 995 Bytes
一键复制 编辑 原始数据 按行查看 历史
oslzh 提交于 2015-12-31 20:47 . add sqlit3 c++ vs6 version
// 转码类
#pragma once
#include "stdafx.h"
#include <string>
#include <iostream>
#include <vector>
#include <windows.h>
#include <wininet.h>
using namespace std;
class CTransFormUtils
{
public:
CTransFormUtils();
virtual ~CTransFormUtils();
//实现单例
static CTransFormUtils * getInstance();
// ANSI to Unicode
wchar_t * ANSIToUnicode(const char * src);
// Unicode to ANSI
char * UnicodeToANSI(const wchar_t * src);
// Unicode to UTF-8
char * UnicodeToUTF8(const wchar_t * src);
// UTF-8 to Unicode
wchar_t * UTF8ToUnicode(const char * src);
// UTF-8 to Unicode
char * UTF8ToANSI(const char * src);
// ANSI to UTF-8
char * ANSIToUTF8(const char * src);
// url编码
char * URLEncode(const char * szIn);
// url解码
char * URLDecode(const char * str);
private:
bool isOrdinaryChar(char c);
int convertToDec(const char* hex);
void getAsDec(char* hex);
wchar_t * w_dest;
char * c_dest;
char * c_szOut;
//实现单例
static CTransFormUtils * pinstance;
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化