使用非 MSVC 编译器在 Windows 下打开带有 Unicode 文件名的文件的 fstream
当文件名是“Unicode”文件名时,我需要将文件打开为 std::fstream (或实际上任何其他 std::ostream)。
在 MSVC 下,我有非标准扩展 std::fstream::open(wchar_t const *,...)
?我可以使用其他编译器(例如 GCC(最重要的)和可能的 Borland 编译器)做什么。
我知道 CRTL 提供了 _wfopen
但它提供了 C FILE *
接口而不是 io-streams,也许有一种非标准方法可以从 创建 io-stream文件*?是否有类似于 Windows 的 MSVC 扩展的
boost::ifstream
?
I need to open a file as std::fstream (or actually any other std::ostream) when file name is "Unicode" file name.
Under MSVC I have non-standard extension std::fstream::open(wchar_t const *,...)
? What can I do with other compilers like GCC (most important) and probably Borland compiler.
I know that CRTL provides _wfopen
but it gives C FILE *
interface instead of io-streams, maybe there is a non-standard way to create io-stream from FILE *
? Is there any boost::ifstream
with MSVC like extension for Windows?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不幸的是,尽管 C++0x(1x?)承诺可以做到这一点,但没有标准方法可以做到这一点。在那之前,您正确地假设可以在 Boost 中找到解决方案,但是,您正在搜索的库是 Boost.Filesystem。
Boost.Filesystem 内部默认使用宽字符串作为其通用路径系统,因此在这方面不存在 unicode 问题。
Unfortunately, there's no standard way to do that, although C++0x (1x?) promises to do that. Until then, you properly assumed that a solution can be found in Boost, however, the library you're searching for is Boost.Filesystem.
Boost.Filesystem internally uses wide strings by default for its universal path system, so there are no unicode problems in this regard.
目前没有简单的解决方案。
您需要创建自己的流缓冲区,并在底层使用
_wfopen
。例如,您可以使用boost::iostream
Currently there is no easy solution.
You need to create your own stream buffer that uses
_wfopen
under the hood. You can use for this for exampleboost::iostream
使用诸如
wcstombs()
或WideCharToMultiByte()
之类的方法将 Unicode 文件名转换为char*
字符串(这使您可以更好地控制代码页)涉及)。然后使用转换后的文件名打开文件。
Convert the Unicode filename to a
char*
string using something likewcstombs()
orWideCharToMultiByte()
(which gives you far more control over the codepages involved).Then use the converted filename to open the file.