在 VB6 中进行标准 URL 编码的最简单且可移植的方法是什么?

发布于 2024-10-14 01:13:03 字数 195 浏览 3 评论 0原文

我们公司有一个VB6程序,现在需要与一些内部Web应用程序/Web服务集成。为了与这些 Web 服务交互,参数需要进行 URL 编码。然而,VB6不提供诸如HttpUtility.UrlEncode()之类的功能,并且默认字符集是Unicode而不是UTF-8。我正在寻找一种最简单、最便携的方法来使 VB6 Web 请求符合标准。请各位指教。

谢谢! 蔡威廉

Our company has a VB6 program, and it now needs to be integrated with some internal web applications / web services. In order to interact with those web services, parameters need to be URL-encoded. However, VB6 doesn't provide such as HttpUtility.UrlEncode(), as well as the default charset is Unicode rather than UTF-8. I'm seeking a most easier and portable way to make the VB6 web request to conform to the standard. Please kindly advise.

Thanks!
William Choi

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

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

发布评论

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

评论(3

没有你我更好 2024-10-21 01:13:03

您可以考虑在 shlwapi.dll 中使用 UrlEscape

You might consider UrlEscape in shlwapi.dll.

活泼老夫 2024-10-21 01:13:03

我找到了以下链接中列出的帮助者。它们确实很有帮助并且便于携带。
VB6.0 中的 Unicode 字符串转换为 UTF8 字节

I found myself the helpers listed in the following link. They're really helpful and portable.
Unicode string to UTF8 bytes in VB6.0

慕烟庭风 2024-10-21 01:13:03

您可能必须编写自己的编码器。

这并不是非常困难。

这篇维基百科文章可以帮助您入门。

You may have to write your own encoder.

It's not terribly difficult.

This Wikipedia article can help you get started.

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