将boost :: mapped_file与wchar *

时间:2016-04-28 02:58:30

标签: c++ boost wchar-t

我想询问如何将boost::iostreams::mapped_filewchar_t *一起使用。目前,我发现了以下内容:

boost::iostreams::mapped_file reader("input.txt" , mapped_file::readonly);
char const * it = reader.const_begin();
char const * endit = reader.const_end();

如我所见,界面只允许char *,但我需要阅读越南语料库(编码UTF-16 LE)。我问的原因是我之前使用过的所有作业,所以如果有的话,我可以再次使用这些代码。

0 个答案:

没有答案