使用非 MSVC 编译器在 Windows 下打开带有 Unicode 文件名的文件的 fstream

发布于 2024-08-22 18:32:22 字数 410 浏览 4 评论 0原文

当文件名是“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

黯然 2024-08-29 18:32:22

不幸的是,尽管 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.

森林迷了鹿 2024-08-29 18:32:22

目前没有简单的解决方案。

您需要创建自己的流缓冲区,并在底层使用 _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 example boost::iostream

給妳壹絲溫柔 2024-08-29 18:32:22

使用诸如 wcstombs()WideCharToMultiByte() 之类的方法将 Unicode 文件名转换为 char* 字符串(这使您可以更好地控制代码页)涉及)。

然后使用转换后的文件名打开文件。

Convert the Unicode filename to a char* string using something like wcstombs() or WideCharToMultiByte() (which gives you far more control over the codepages involved).

Then use the converted filename to open the file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文