从 PInvoked OpenFileDialog (GetOpenFileName) 编组非托管字符串数组

发布于 2024-07-15 23:10:10 字数 635 浏览 10 评论 0原文

OpenFileDialog 返回一个指向内存的指针,其中包含一系列以 null 结尾的字符串,后跟最终的 null 来指示数组的结尾。

这就是我从非托管指针获取 C# 字符串的方法,但我确信一定有一种更安全、更优雅的方法。

            IntPtr unmanagedPtr = // start of the array ...
            int offset = 0;
            while (true)
            {
                IntPtr ptr = new IntPtr( unmanagedPtr.ToInt32() + offset );
                string name = Marshal.PtrToStringAuto(ptr);
                if(string.IsNullOrEmpty(name))
                    break;

                // Hack!  (assumes 2 bytes per string character + terminal null)
                offset += name.Length * 2 + 2;
            }

OpenFileDialog returns a pointer to memory containing a sequence of null-terminated strings, followed by final null to indicate the end of the array.

This is how I'm getting C# strings back from the unmanaged pointer, but I'm sure there must be a safer, more elegant way.

            IntPtr unmanagedPtr = // start of the array ...
            int offset = 0;
            while (true)
            {
                IntPtr ptr = new IntPtr( unmanagedPtr.ToInt32() + offset );
                string name = Marshal.PtrToStringAuto(ptr);
                if(string.IsNullOrEmpty(name))
                    break;

                // Hack!  (assumes 2 bytes per string character + terminal null)
                offset += name.Length * 2 + 2;
            }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

如此安好 2024-07-22 23:10:10

你正在做的事情看起来相当不错 - 我要做的唯一改变是使用 Encoding.Unicode.GetByteCount(name) 而不是 name.Length * 2 (它是只是更明显发生了什么)。

另外,如果您确信非托管数据是 Unicode,则可能需要使用 Marshal.PtrToStringUni(ptr),因为它消除了有关字符串编码的任何歧义。

What you're doing looks pretty good - the only change I would make would be to use Encoding.Unicode.GetByteCount(name) instead of name.Length * 2 (it's just more obvious what's going on).

Also, you might want to use Marshal.PtrToStringUni(ptr) if you are positive that your unmanaged data is Unicode, as it removes any ambiguity about your string encoding.

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