亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++編碼轉換的方法

發布時間:2020-08-15 09:39:42 來源:億速云 閱讀:207 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關C++編碼轉換的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

需求

編碼轉換在實際開發中經常遇到,通常是ANSI、Unicode和Utf-8之間相互轉換。實現也有很多種,有查表法、使用C++11、使用boost、使用系統API。C++11和boost幾乎可以實現一套代碼,在linux和windows都能使用,但實際會有很多坑,相當于代碼幾乎不改,但是要改一下系統環境。所以有一種實現就是判斷系統的版本,然后選擇不同的系統api進行編碼轉換。

實現

目前只實現Windows下的編碼轉換,以后需要在linux下使用編碼轉換再做補充。windows下的編碼轉換基本圍繞unicode做處理。例如ANSI->UTF-8,就是先將ANSI->unicode,再將unicode->UTF-8。

// convert.h
/*
 * @Author: gongluck 
 * @Date: 2020-03-23 16:06:23 
 * @Last Modified by: gongluck
 * @Last Modified time: 2020-03-23 16:09:30
 */

// Character encoding conversion

#pragma once

#include <string>

namespace gconvert
{
// ANSI->Unicode
int ansi2uni(const std::string& ansi, std::wstring& uni);

// Unicode->ANSI
int uni2ansi(const std::wstring& uni, std::string& ansi);

// UTF8->Unicode
int utf82uni(const std::string& utf8, std::wstring& uni);

// Unicode->UTF8
int uni2utf8(const std::wstring& uni, std::string& utf8);

// ANSI->UTF8
int ansi2utf8(const std::string& ansi, std::string& utf8);

// UTF8->ANSI
int utf82ansi(const std::string& utf8, std::string& ansi);
} // namespace gconvert
//convert.cpp
/*
 * @Author: gongluck 
 * @Date: 2020-03-23 16:13:01 
 * @Last Modified by: gongluck
 * @Last Modified time: 2020-03-23 16:34:50
 */

#include "convert.h"

#include <iostream>

#ifdef _WIN32
#include <windows.h>
#endif

namespace gconvert
{
#ifdef _WIN32
  static int multi2uni(const std::string& multi, std::wstring& uni, UINT code)
  {
    auto len = MultiByteToWideChar(code, 0, multi.c_str(), -1, nullptr, 0);
    if (len <= 0)
    {
      std::cerr << __FILE__ << " : " << __LINE__ << " : " << GetLastError() << std::endl;
      return -1;
    }
    WCHAR* buf = new WCHAR[len];
    if (buf == nullptr)
    {
      std::cerr << __FILE__ << " : " << __LINE__ << " : " << "can not new buf, size : " << len << std::endl;
      return -2;
    }
    len = MultiByteToWideChar(code, 0, multi.c_str(), -1, buf, len);
    uni.assign(buf);
    delete[]buf;
    buf = nullptr;
    return len;
  }

  static int uni2multi(const std::wstring& uni, std::string& multi, UINT code)
  {
    auto len = WideCharToMultiByte(code, 0, uni.c_str(), -1, nullptr, 0, nullptr, nullptr);
    if (len <= 0)
    {
      std::cerr << __FILE__ << " : " << __LINE__ << " : " << GetLastError() << std::endl;
      return -1;
    }
    CHAR* buf = new CHAR[len];
    if (buf == nullptr)
    {
      std::cerr << __FILE__ << " : " << __LINE__ << " : " << "can not new buf, size : " << len << std::endl;
      return -2;
    }
    len = WideCharToMultiByte(code, 0, uni.c_str(), -1, buf, len, nullptr, nullptr);
    multi.assign(buf);
    delete[]buf;
    buf = nullptr;
    return len;
  }
#endif

// ANSI->Unicode
int ansi2uni(const std::string& ansi, std::wstring& uni)
{
#ifdef _WIN32
  return multi2uni(ansi, uni, CP_ACP);
#endif
  return 0;
}

// Unicode->ANSI
int uni2ansi(const std::wstring &uni, std::string &ansi)
{
#ifdef _WIN32
  return uni2multi(uni, ansi, CP_ACP);
#endif
  return 0;
}

// UTF8->Unicode
int utf82uni(const std::string& utf8, std::wstring& uni)
{
#ifdef _WIN32
  return multi2uni(utf8, uni, CP_UTF8);
#endif
  return 0;
}

// Unicode->UTF8
int uni2utf8(const std::wstring& uni, std::string& utf8)
{
#ifdef _WIN32
  return uni2multi(uni, utf8, CP_UTF8);
#endif
  return 0;
}

// ANSI->UTF8
int ansi2utf8(const std::string &ansi, std::string &utf8)
{
  std::wstring uni;
  auto len = ansi2uni(ansi, uni);
  if (len <= 0)
  {
    return -3;
  }
  return uni2utf8(uni, utf8);
}

// UTF8->ANSI
int utf82ansi(const std::string &utf8, std::string &ansi)
{
  std::wstring uni;
  auto len = utf82uni(utf8, uni);
  if (len <= 0)
  {
    return -3;
  }
  return uni2ansi(uni, ansi);
}
} // namespace gconvert
//testcode
#include <iostream>

#include "../code conversion/convert.h"

int main()
{
  std::string ansi = "你好,世界!";
  std::wstring uni;
  std::string utf8;
  ret = gconvert::ansi2uni(ansi, uni);
  ret = gconvert::ansi2utf8(ansi, utf8);
  ret = gconvert::uni2ansi(uni, ansi);
  ret = gconvert::uni2utf8(uni, utf8);
  ret = gconvert::utf82ansi(utf8, ansi);
  ret = gconvert::utf82uni(utf8, uni);
  return 0;
}

關于C++編碼轉換的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

卫辉市| 沙河市| 长沙市| 宁城县| 江北区| 保德县| 承德县| 阿瓦提县| 西藏| 灵川县| 色达县| 建宁县| 中西区| 成都市| 陵水| 滨海县| 贞丰县| 灵丘县| 佛冈县| 微博| 富阳市| 邵阳市| 祁阳县| 富宁县| 德格县| 潞西市| 恩施市| 东源县| 甘南县| 海兴县| 麻栗坡县| 兴仁县| 遵义市| 永定县| 平顺县| 泽库县| 宣汉县| 邵武市| 简阳市| 河东区| 濮阳市|