c++python 중국어 코드 호출 문제 해결
python 기본 값 은 utf-8 인 코딩 입 니 다.
c++프로그램 에 추가 하 는 것 이 좋 습 니 다:
#pragma execution_character_set("GB2312")
c++의 문자열 은 반드시 gbk 인 코딩 입 니 다.
python 에 들 어가 기 전에 인 코딩 변환 을 해 야 합 니 다.
gbk 에서 utf 8 로 전환 하 는 함 수 를 준비 하 십시오.다음 과 같 습 니 다.
string GbkToUtf8(const char* src_str)
{
int len = MultiByteToWideChar(CP_ACP, 0, src_str, -1, NULL, 0);
wchar_t* wstr = new wchar_t[len + 1];
memset(wstr, 0, len + 1);
MultiByteToWideChar(CP_ACP, 0, src_str, -1, wstr, len);
len = WideCharToMultiByte(CP_UTF8, 0, wstr, -1, NULL, 0, NULL, NULL);
char* str = new char[len + 1];
memset(str, 0, len + 1);
WideCharToMultiByte(CP_UTF8, 0, wstr, -1, str, len, NULL, NULL);
string strTemp = str;
if (wstr) delete[] wstr;
if (str) delete[] str;
return strTemp;
}
예제 코드:
#pragma execution_character_set("GB2312")
#include <stdlib.h>
#include <Windows.h>
#include <iostream>
#include <Python.h>
#include <string>
#include <atlstr.h>
using namespace System;
using namespace System::Runtime::InteropServices;
using namespace System::Collections::Generic;
using namespace System::Diagnostics;
using namespace System::Threading;
using namespace std;
int main()
{
const char* name = " 1 ";
Py_Initialize();// python
PyRun_SimpleString("import sys");
PyRun_SimpleString("sys.path.append('./')");
PyObject* pModule = PyImport_ImportModule("hello");
PyObject* pFunc1 = PyObject_GetAttrString(pModule, "sayhello");
PyObject* pArgs = PyTuple_New(1);
PyObject* pV1 = Py_BuildValue("s", GbkToUtf8(name).c_str());
PyTuple_SetItem(pArgs, 0, pV1);
PyObject* result = PyObject_CallObject(pFunc1, pArgs);
Py_Finalize();
return 0;
c++python 중국어 코드 호출 문 제 를 해결 하 는 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 관련 c++python 중국어 코드 호출 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 지원 바 랍 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
hdu 1717 소수 화 점수 2 (수학)소수 화 점수 2 레이 는 수학 시간 에 선생님 의 말씀 을 듣 고 모든 소수 가 점수 로 표시 되 는 형식 이 라 고 말 했다. 그 는 녹 기 시 작 했 고 곧 완성 되 었 다. 그러나 그 는 또 하나의 문 제 를...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.