c++ 在CHtmlEditCtrl::SetDocumentHTML中使用Unicode

f2uvfpb9  于 2023-04-01  发布在  其他
关注(0)|答案(2)|浏览(98)

如何使用CHtmlEditCtrl::SetDocumentHTML正确显示Unicode(UTF-16或UTF-8输入)
程序以Unicode编译。
例如,给定以下带有charset=utf-8 meta标记的输入:

CString u16 = LR"(<!DOCTYPE><html>
    <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/></head>
    <body>ελληνικά 华语 😃</body></html>)";

m_htmledit.SetDocumentHTML(u16)无法正确显示字符。
我必须调用m_htmledit.SetDocumentHTML(CA2W(CW2A(u16, CP_UTF8), CP_ACP));
我不知道为什么它会这样工作,或者它是否在所有系统上都能工作。
最小示例:

#include "afxhtml.h"
...
CHtmlEditCtrl m_htmledit;
...
BOOL CMyDialog::OnInitDialog()
{
    CDialogEx::OnInitDialog();
    m_htmledit.Create(0, 0, CRect(10, 10, 300, 300), this, 0, 0);

    //wait for the control, this is not directly related to the question
    CComPtr<IHTMLDocument2> document;
    if(m_htmledit.GetDHtmlDocument(&document))
    {
        CComBSTR ready;
        while(document->get_readyState(&ready) == S_OK)
            if(wcscmp(ready, L"complete") == 0 || !AfxPumpMessage())
                break;
    }

    //send html data:
    CString utf16 = LR"(<!DOCTYPE><html>
        <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/></head>
        <body>ελληνικά 华语 😃</body></html>)";

    //m_htmledit.SetDocumentHTML(utf16); <- outputs garbage characters
    m_htmledit.SetDocumentHTML(CA2W(CW2A(utf16, CP_UTF8), CP_ACP)); //<- correct output
    return TRUE;
}

UTF-8输入也有类似的问题。
m_htmledit_ctrl.SetDocumentHTML(CA2W(utf8, CP_UTF8));无法正确显示字符。
m_htmledit_ctrl.SetDocumentHTML(CA2W(utf8, CP_ACP));确实可以工作。但是在这里使用CP_ACP是奇怪的。
示例:

CStringA utf8 = u8R"(<!DOCTYPE><html>
    <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/></head>
    <body>ελληνικά 华语 😃</body></html>)";
m_htmledit.SetDocumentHTML(CA2W(utf8, CP_ACP)); //<= correct output
mfuanj7w

mfuanj7w1#

CHtmlEditCtrl::SetDocumentHTML使用一个名为CStreamOnCString的类。
CStreamOnCString在某些时候调用

m_strAnsi = m_strStream;

其中m_strAnsi是一个存储缓冲区,m_strStreamCStringW源。我相信这是一个错误,因为它没有将源复制到缓冲区。而是将其转换为CW2A(m_strStream, CP_ACP)
此错误可以在发送数据之前通过另一个CP_ACP转换来纠正。
或者,我们可以编写自己的函数如下:

class CMyHtmlEditCtrl : public CHtmlEditCtrl
{
    public:
    template <class Type>
    HRESULT SetDocumentHTML_unicode(CStringT<Type, StrTraitMFC<Type>> html)
    {
        HRESULT hr = E_NOINTERFACE;
        CComPtr<IHTMLDocument2> document;
        if(!GetDHtmlDocument(&document))
            return hr;
        IStream *istream = SHCreateMemStream(
          reinterpret_cast<const BYTE*>(html.GetBuffer()), sizeof(Type)*html.GetLength());
        if(istream)
        {
            //CComQIPtr<IPersistStreamInit> psi = document; 
            CComQIPtr<IPersistStreamInit> psi { document }; //c++20 compliant
            if(psi)
                hr = psi->Load(istream);
            istream->Release();
        }
        html.ReleaseBuffer();
        return hr;
    }
};

现在我们可以调用SetDocumentHTML_unicode(utf8_string)SetDocumentHTML_unicode(utf16_string)

w8f9ii69

w8f9ii692#

接受的答案在c++20中无法编译。下面是一个可以编译的版本(但仅适用于CStringW或CStringA,取决于UNICODE定义):

HRESULT CMyHtmlEditCtrl::SetDocumentHTML_unicode(CString html)
{
    HRESULT hr = E_NOINTERFACE;
    CStreamOnCString stream(html);
    ::ATL::CComPtr<IHTMLDocument2> spHTMLDocument;
    ::ATL::CComQIPtr<IPersistStreamInit> spPSI;

    if(!GetDHtmlDocument(&spHTMLDocument))
        return hr;
    IStream *istream = SHCreateMemStream(
        reinterpret_cast<const BYTE*>((LPCTSTR)html), sizeof(TCHAR)*html.GetLength());
    if(istream)
    {
        spPSI = spHTMLDocument;
        if(spPSI)
            hr = spPSI->Load(istream);
        istream->Release();
    }
    return hr;
}

相关问题