赞
踩
(1)头文件
#pragma once
class CStringUtil
{
public:
/*
* int 转化为string
*/
static string IntToString(int iSour);
/*
* string 转化为 wstring
*/
static std::wstring StringToWString(const std::string &str);
/*
* UTF8 转化为 Encode
*/
static char* UTF8ToEncode(const char* mbcsStr);
/*
* Encode 转化为 UTF8
*/
static char* EncodeToUTF8(const char* mbcsStr);
static bool WStringToString(const wstring &wstr, string &str);
/*
* char* 转化为 TCHAR*
*/
static TCHAR *CStringUtil::CHAR2TCHAR(char *ch);
static void ConvertUtf8ToGBK(std::string&, std::string strUtf8);
static void ConvertGBKToUtf8(std::string& amp, std::string strGBK);
};
(2)实现文件
#include "stdafx.h"
#include "CStringUtil.h"Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。