Qt Unicode

Unicode 是世界几乎所有语言谈及的文本编码标准。现今,它被用作文本的本机编码,在大多数现代操作系统。主要例外,微软 Windows 应用程序仍然拥有代码页和 Unicode 双重系统支持。

用于操控字符串的 Qt 类

这些类是相关的,当操控字符串数据时。渲染文本的有关信息,见 富文本处理 概述;若字符串数据采用 XML (可扩展标记语言) 方式,见 XML 处理 概述。

QAnyStringView 带有 QString API 只读子集的 Latin-1、UTF-8 或 UTF-16 字符串统一视图
QByteArray 字节数组
QByteArrayList 字节数组列表
QByteArrayMatcher 保持在字节数组中可以快速匹配的字节序列
QByteArrayView 带有只读 QByteArray API 子集的字节数组视图
QChar 16 位 Unicode 字符
QCollator 根据本地整理算法比较字符串
QCollatorSortKey 可以用于加速字符串整理
QLatin1Char 8 位 ASCII/Latin-1 字符
QLatin1StringMatcher 优化搜索 Latin-1 文本中的子字符串
QLatin1StringView 围绕 US-ASCII/Latin-1 编码字符串文字的瘦包裹器
QLocale 在数字及其各种语言的字符串表示之间转换
QStaticByteArrayMatcher QByteArrayMatcher 的编译时版本
QString Unicode 字符串
QStringList 字符串列表
QStringMatcher 保持可以在 Unicode 字符串中快速匹配的字符序列
QStringRef 围绕 QString 子字符串的瘦包裹器
QStringTokenizer 沿给定分隔符将字符串分割成令牌
QStringView 带有 QString API 只读子集的 UTF-16 字符串统一视图
QTextBoundaryFinder 在字符串中查找 Unicode 文本边界的办法
QTextStream 用于读写文本的方便接口
QUtf8StringView 带有 QString API 只读子集的 UTF-8 字符串统一视图

Web 中 Unicode 的有关信息

The Unicode 联盟 有很多可用文档,包括

Qt Unicode

在 Qt 中,在使用 Qt 的大多数应用程序中,用户可见的大多数 (或所有) 字符串都是使用 Unicode 存储的。Qt 提供:

  • 为文件 I/O 翻译到/来自传统编码:见 QTextCodec and QTextStream .
  • 支持特定区域设置的输入法和键盘。
  • 字符串类 QString ,存储 Unicode 字符,支持迁移自 C 字符串,包括快速翻译到/来自 UTF-8、ISO8859-1 和 US-ASCII,及所有常见字符串操作。
  • Unicode 感知 UI 控件。
  • Unicode 兼容文本分割 ( QTextBoundaryFinder )
  • Unicode 兼容的换行和文本渲染

为完全利用 Unicode 的好处,推荐使用 QString 为存储所有用户可见字符串,而履行所有文本文件 I/O 使用 QTextStream .

Qt 中的所有函数自变量可以是用户可见字符串, QLabel::setText () 及很多其它,接受 const QString & QString 提供隐式铸造从 const char * 所以事情像

label->setText("Password:");
					

会工作。还有函数 QObject::tr (),提供翻译支持,像这样:

label->setText(tr("Password:"));
					

QObject::tr () 映射从 const char * 到 Unicode 字符串,和使用可安装 QTranslator 对象来做映射。

Qt 提供了很多内置 QTextCodec classes, that is, classes that know how to translate between Unicode and legacy encodings to support programs that must talk to other programs or read/write files in legacy file formats.

转换到/来自 const char * uses a UTF-8. However, applications can easily find codecs for other locales, and set any open file or network connection to use a special codec.

Since US-ASCII and ISO-8859-1 are so common, there are also especially fast functions for mapping to and from them. For example, to open an application's icon one might do this:

QFile file(QString::fromLatin1("appicon.png"));
					

or

QFile file(QLatin1String("appicon.png"));
					

Qt supports rendering text in most languages written in the world. The detailed list of supported writing systems depends a bit on operating system support and font availability on the target system.

另请参阅 Qt 国际化 .