How to write a std::string to a UTF-8 text file(如何将 std::string 写入 UTF-8 文本文件)
问题描述
我只想用 C++ 将一些简单的行写入文本文件,但我希望它们以 UTF-8 编码.最简单的方法是什么?
I just want to write some few simple lines to a text file in C++, but I want them to be encoded in UTF-8. What is the easiest and simple way to do so?
推荐答案
UTF-8 影响 std::string
的唯一方式是 size()
, length()
,所有索引都以字节为单位,而不是字符.
The only way UTF-8 affects std::string
is that size()
, length()
, and all the indices are measured in bytes, not characters.
而且,正如 sbi 指出的那样,递增 std::string
提供的迭代器将按字节而不是按字符向前推进,因此它实际上可以指向多字节 UTF-8 的中间代码点.标准库中没有提供支持 UTF-8 的迭代器,但在网络"上提供了一些.
And, as sbi points out, incrementing the iterator provided by std::string
will step forward by byte, not by character, so it can actually point into the middle of a multibyte UTF-8 codepoint. There's no UTF-8-aware iterator provided in the standard library, but there are a few available on the 'Net.
如果你记得的话,你可以将 UTF-8 放入 std::string
,以通常的方式将其写入文件等(我的意思是你的方式)使用 std::string
里面没有 UTF-8).
If you remember that, you can put UTF-8 into std::string
, write it to a file, etc. all in the usual way (by which I mean the way you'd use a std::string
without UTF-8 inside).
您可能希望以字节顺序标记开始您的文件,以便其他程序知道它是 UTF-8.
You may want to start your file with a byte order mark so that other programs will know it is UTF-8.
这篇关于如何将 std::string 写入 UTF-8 文本文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将 std::string 写入 UTF-8 文本文件
- C++ 协变模板 2021-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 从python回调到c++的选项 2022-11-16
- Stroustrup 的 Simple_window.h 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 静态初始化顺序失败 2022-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 近似搜索的工作原理 2021-01-01