- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Scott Meyers 的“Effective STL”一书中,有一个将整个文本文件读入 std::string 对象的好例子:
std::string sData;
/*** Open the file for reading, binary mode ***/
std::ifstream ifFile (“MyFile.txt”, std::ios_base::binary); // Open for input, binary mode
/*** Read in all the data from the file into one string object ***/
sData.assign (std::istreambuf_iterator <char> (ifFile),
std::istreambuf_iterator <char> ());
std::wstring wsData;
/*** Open the file for reading, binary mode ***/
std::wifstream ifFile (“MyFile.txt”, std::ios_base::binary); // Open for input, binary mode
/*** Read in all the data from the file into one string object ***/
wsData.assign (std::istreambuf_iterator <wchar_t> (ifFile),
std::istreambuf_iterator <wchar_t> ());
std::wstring wsData;
/*** Open the file for reading, binary mode ***/
std::wifstream ifFile (“MyFile.txt”, std::ios_base::binary); // Open for input, binary mode
wsData.resize (<Size of file in bytes> / sizeof (wchar_t));
ifFile.read ((char *) &wsData [0], <Size of file in bytes>);
最佳答案
您必须对 SO 感到失望,才能在此之后没有收到您的第一个问题的答案
四个半月。这是一个好问题,大多数好问题都得到了回答
(好或坏)在几分钟内。忽视你的两个可能的原因是:
std::wfstream
, 和宽字符串,
std::wstring
,
std::wifstream
(
std::basic_ifstream<wchar_t>
) 是一个输入流,它转换
wchar_t
,根据规定
std::wofstream
(
std::basic_ofstream<wchar_t>
) 是一个输出流
wchar_t
的内部序列到外部字节序列,根据
std::wstring
(
std::basic_string<wchar_t>
) 是一个字符串类型,它只存储
wchar_t
的序列, 不知道编码 - 如果有的话 - 产生它们。
std::wstring
.你说:
I would have thought that the std::istreambuf_iterator, being specialized to wchar_t, should have resulted in the file being read two bytes at a time, shouldn't it? If not, what's its purpose then?
wchar_t
不一定是 2 字节宽(它在 Microsoft 的 C 库中,
wchar_t
单位不可能是解码 UTF-16 流的全部内容。
std::wifstream ifFile ("MyFile.txt", std::ios_base::binary);
wchar_t
它将从字节序列中提取这些字符
std::locale
指定的编码
std::locale
对于您的流,因此库的默认值生效。
std::istreambuf_iterator<wchar_t>
时到
wchar_t
它附加到
std::wstring wsData
.字节
wsData
的宽字符正如你所观察到的:
It's as if the file were still being read byte by byte and then just simply translated into individual wchar_t characters.
imbue
std::locale
的流拥有一个
std::locale::facet
那是一个实例化
std::codecvt<InternT, ExternT, StateT>
(或源自此类)
wchar_t
.
#include <locale>
和 #include <codecvt>
到您的标题 ifFile.imbue(std::locale(ifFile.getloc(),new std::codecvt_utf16<wchar_t,0x10ffff,std::little_endian>));
std::wifstream ifFile ("MyFile.txt", std::ios_base::binary);
ifFile
使用相同的新语言环境
ifFile.getloc()
- 但具有修改的编码器/解码器方面
std::codecvt_utf16<wchar_t,0x10ffff,std::little_endian>
.此
codecvt
方面是
0x10ffff
小端
wchar_t
值(
0x10ffff
是 UTF-16 代码点的最大值)。
wsData
只有 4 个宽字符长
0xFEFF, L'A', L'B', L'C'
FE
,
FF
与申请前相反
codecvt
facet,向我们展示了 little-endian 解码是按要求完成的。
std::little_endian
来编辑新行,
wsData
的第一个元素变成
0xFFFE
并且其他三个宽字符成为
wsData
没有领先的 BOM,您可以通过
std::little_endian
和
std::codecvt_mode(std::little_endian|std::consume_header)
wchar_t
宽度不足以表示 0x100000 和 0x10ffff 之间的 UTF-16 代码点
wchar_t
不适合目的。代替:
wchar_t
与 char32_t
std::wstring
与 std::basic_string<char32_t>
std::wifstream
与 std::basic_ifstream<char32_t>
<codecvt>
标准标题。标题
<bits/codecvt.h>
存在并且可能会在某个时候升级为
<codecvt>
,但此时它只
class codecvt<char, char, mbstate_t>
和
class codecvt<wchar_t, char, mbstate_t>
, 分别是身份
wchar_t
之间的转换和转换.解决OP的问题
std::codecvt<wchar_t,char,std::char_traits<wchar_t>::state_type>
您自己,根据
this answer )
关于c++ - 求 istreambuf_iterator <wchar_t> 澄清,读取 Unicode 字符的完整文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14167611/
我想在一个文本文件中查找行数,但是在执行istreambuf_iterator 后我无法读取内容。 std::ifstream loadfile("file.txt"); line_count = s
基于这个问题:C++ streams confusion: istreambuf_iterator vs istream_iterator?在 istreambuf_iterator ,我的理解是is
istreambuf_iterator 什么时候抛出异常?当底层流试图读取一个目录时,我收到一个异常,但在其他情况下没有。具体来说,我从 Jan-Philip Gehrcke 的 blog 中获取了脚
在标准中我读到你必须创建一个默认迭代器才能知道迭代器是否已经到达流的末尾。我认为它变得非常丑陋,难道没有任何预定义的符号或等效符号可以帮助我们吗? The default-constructed st
我们可以将整个文件读入一个字符串: std::ifstream ifs(path); assert(ifs.good()); std::string text(std::istreambuf_iter
我正在使用以下代码(使用命名空间 std)将文件内容转换为字符串。 代码 1 string fileToString(const string& filename) { ifstream fi
我有一段代码可以将 .txt 文件的内容读入字符串。 std::ifstream file("address.txt"); std::string oldAddress((std::istreamb
我正在阅读 Constructing a vector with istream_iterators这是关于将完整的文件内容读入字符 vector 。虽然我希望将文件的一部分加载到字符 vector
代码如下: #include #include #include #include std::vector bytes; { std::ifstream in(name, std::i
我尝试将二进制文件内容的一部分读入字符串。为什么是字符串?我的消息协议(protocol)(使用 protobuf)需要这个。 下面的效果很好: std::string* data = new std
以下是an example from cppreference.com , The Code is: #include #include #include #include int main(
istreambuf_iterator 和 istream_iterator 有什么区别。 对于下面的代码: istream_iterator cin_in(cin); istream_itera
我已经使用 从流中一个一个地提取字符,以构造对象。 最终,我的目标是能够使用 istream_iterator 遍历流并将每个对象插入 vector .非常标准,除了我无法获得 istream_ite
istreambuf_iterator 和 istream_iterator 有什么区别?一般来说,流和流缓冲区有什么区别?我真的找不到任何明确的解释,所以决定在这里问。 最佳答案 IOstreams
许多程序员可能会混淆以下代码: int main() { std::ifstream ifs("filename", std::ios::binary); std::string conten
我需要读取一个包含标题和数据的二进制文件(一次性)。在 C++ 中有多种读取文件的方法,我想知道哪种方法最快、更可靠。我也不知道 reintrerpret_cast 是否是将原始数据转换为结构的最佳方
我正在尝试读取一个充满 std::complex 的二进制文件.我尝试了以下代码,as suggested in this SO answer : #include #include #inclu
我无法编译(非常做作)C++ ranges example : #include #include #include template auto populate(R&& range) {
我有以下代码: std::ifstream ifs(fileName, std::ios_base::in | std::ios_base::binary); std::vector vecdata(
我将二进制文件读入 uchar vector ,如下所示: std::ifstream is("path", std::ios::in | std::ios::binary); std::vector
我是一名优秀的程序员,十分优秀!