其他分享
首页 > 其他分享> > c-从html文件读取Unicode内容时,为什么QTextBrowser中的Unicode字体无法正确显示?

c-从html文件读取Unicode内容时,为什么QTextBrowser中的Unicode字体无法正确显示?

作者:互联网

我正在读取html文件.该文件基本上包含Unicode文本,如下所示:

<b>akko- sati (ā + kruś), akkhāti (ā + khyā), abbahati (ā + bṛh)</b>

但是QTextBrowser不能解释Unicode字体.因此,QTextBrowser将它们显示如下:

akko- sati (Ä + kruÅ›), akkhÄti (Ä + khyÄ), abbahati (Ä + bá¹›h)

QTextBrowser正确解释了html标签.但是Unicode字体怎么了?

以下是我用于读取和填充Unicode内容的代码:

void MainWindow::populateTextBrowser(const QModelIndex &index)
{
    QFile file("Data\\" + index.data().toString() + ".html");
    if (!file.open(QFile::ReadOnly | QFile::Text)) {
         statusBar()->showMessage("Cannot open file: " + file.fileName());
    }
    QTextStream textStream1(&file);

    QString string = "<meta http-equiv='Content-Type' content='text/html; charset=utf-8' /><link rel='stylesheet' type='text/css' href='Data/Accessories/qss.css' />";
    string += textStream1.readAll();

    ui->textBrowser->setHtml(string); 
} 

但是,如果我不从html文件中读取Unicode内容,而是直接将它们键入参数中,则只有它可以解释Unicode字体.例如,如果我按如下操作就可以了:

ui->textBrowser->setHtml("<b>akko- sati (ā + kruś), akkhāti (ā + khyā), abbahati (ā + bṛh)</b>");

如何从html文件中读取Unicode内容并将其显示在QTextBrowser中?

如果有人向我展示代码中的错误部分或告诉我解决问题的更好方法,我将非常感激.

解决方法:

您将一个二进制文件读入QString,但不告诉程序哪个字节对应于哪个unicode字符,即,您也没有指定“ encoding”. “编解码器”.

要调试您的问题,请询问QTextStream默认使用哪些代码:

QTextStream textStream1(&file);
qDebug() << textStream1.codec()->name();

在我的Linux系统上,该名称已经是“ UTF-8”,但在您的系统上可能有所不同.要强制QTextStream将输入解释为UTF-8,请使用QTextStream::setCodec.

标签:c,unicode,qt,qtextbrowser
来源: https://codeday.me/bug/20191013/1908771.html