代码拉取完成,页面将自动刷新
#pragma once
#include "iconv.h"
#include <algorithm>
#include <cstring>
#include <map>
#include <string>
class PotConv
{
public:
PotConv();
virtual ~PotConv();
static std::string conv(const std::string& src, const char* from, const char* to);
static std::string conv(const std::string& src, const std::string& from, const std::string& to);
static std::string cp936toutf8(const std::string& src) { return conv(src, "cp936", "utf-8"); }
static std::string cp950toutf8(const std::string& src) { return conv(src, "cp950", "utf-8"); }
static std::string cp950tocp936(const std::string& src) { return conv(src, "cp950", "cp936"); }
static std::string utf8tocp936(const std::string& src) { return conv(src, "utf-8", "cp936"); }
static void fromCP950ToCP936(char* s)
{
auto str = PotConv::cp950tocp936(s);
memcpy(s, str.data(), str.length());
}
static void fromCP950ToUTF8(char* s)
{
auto str = PotConv::cp950toutf8(s);
memcpy(s, str.data(), str.length());
}
static void fromCP936ToUTF8(char* s)
{
auto str = PotConv::cp936toutf8(s);
memcpy(s, str.data(), str.length());
}
static std::string to_read(const std::string& src);
private:
std::map<std::string, iconv_t> cds_;
static PotConv potconv_;
static iconv_t createcd(const char* from, const char* to);
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。